A256545 Composite numbers k such that k*phi(k) is in A002378.
6, 30, 434, 510, 616, 912, 1640, 2989, 3003, 5934, 7280, 8600, 10726, 12700, 13825, 14288, 18699, 19389, 54153, 59394, 59906, 70563, 72816, 116052, 117964, 121954, 131070, 134212, 140752, 177000, 206514, 210728, 274023, 319522, 418610, 437736, 456666
Offset: 1
Keywords
Examples
a(1) = 6 is in the sequence because 6*phi(6) = 12 = 4*3.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..258 (terms below 10^11; terms 1..62 from Robert Israel)
Programs
-
Maple
select(n -> not isprime(n) and issqr(1+4*n*numtheory:-phi(n)), [$1..10^6]);
-
Mathematica
Select[Range[10^6],!PrimeQ[#]&&IntegerQ[Sqrt[4*#*EulerPhi[#]+1]]&] (* Ivan N. Ianakiev, Apr 02 2015 *)
-
PARI
lista(nn) = {forcomposite (n=1, nn, if (ispolygonal(n*eulerphi(n)/2, 3), print1(n ", ")););} \\ Michel Marcus, Apr 02 2015
Comments