Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226384 Numbers k such that rad(phi(k)) = phi(rad(k)). 3
1, 2, 3, 6, 7, 11, 12, 14, 22, 23, 24, 28, 31, 43, 44, 46, 47, 48, 56, 59, 62, 67, 71, 79, 83, 86, 88, 92, 94, 96, 103, 107, 112, 118, 124, 131, 134, 139, 142, 158, 166, 167, 172, 176, 179, 184, 188, 191, 192, 206, 211, 214, 223, 224, 227, 236, 239, 248, 262 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers k such that A080400(k) = A173557(k). - Amiram Eldar, Apr 09 2020
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MAPLE
with(numtheory):
rad:= n-> mul(i, i=factorset(n)):
a:= proc(n) option remember; local k; for k from 1+a(n-1)
while phi(rad(k))<>rad(phi(k)) do od; k
end: a(0):=0:
seq(a(n), n=1..80); # Alois P. Heinz, Jun 07 2013
MATHEMATICA
rad[n_] := Product[fa[n][[i, 1]], {i,
Length[fa[n]]}]; fa = FactorInteger;
Select[Range[500], rad[EulerPhi[#]] == EulerPhi[rad[#]] &]
PROG
(PARI) is(n)=my(f=factor(n)); lcm(factor(eulerphi(f))[, 1])==prod(i=1, #f~, f[i, 1]-1) \\ Charles R Greathouse IV, Nov 13 2013
CROSSREFS
Sequence in context: A050031 A003421 A253239 * A298947 A075995 A102432
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 6 00:15 EDT 2024. Contains 374957 sequences. (Running on oeis4.)