A287473 Triangular numbers k such that phi(k) is a square number, where phi(k) is the Euler totient function (A000010).
1, 10, 136, 630, 2016, 7875, 9180, 18915, 32896, 37128, 46056, 58311, 66430, 103740, 131841, 198135, 225456, 301476, 323610, 332520, 408156, 499500, 738720, 786885, 839160, 862641, 922761, 924120, 1065070, 1079715, 1183491, 1385280, 1851850, 1906128, 1925703
Offset: 1
Keywords
Examples
136=16*17/2 is triangular, phi(136)=64=8^2 is a square, thus 136 is in the sequence.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
Select[Accumulate[Range[1000]],IntegerQ[Sqrt[EulerPhi[#]]]&]
-
PARI
isok(n) = ispolygonal(n, 3) && issquare(eulerphi(n)); \\ Michel Marcus, May 25 2017
Comments