A282090 Totient numbers (A002202) of the form 1 + k + k^2 + k^3 +...+ k^i (i > 1, k > 1).
40, 156, 400, 820, 1464, 2380, 3280, 3616, 3906, 5220, 7240, 9724, 12720, 19608, 20440, 25260, 30784, 37060, 60880, 66430, 70644, 81400, 93196, 97656, 106080, 120100, 135304, 151740, 169456, 177156, 188500, 254080, 265720, 278916, 333340, 363024, 394420, 427576, 462540, 499360
Offset: 1
Keywords
Examples
40 is a term because 1 + 3 + 9 + 27 = 40 is a totient number.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
PARI
list(lim)=my(v=List(), e, t); for(b=2, sqrt(lim), e=3; while((t=(b^e-1)/(b-1))<=lim, if(istotient(t),listput(v, t)); e++)); vecsort(Vec(v), , 8) \\ Ray Chandler, Feb 08 2017
Extensions
Terms confirmed by Ray Chandler, Feb 08 2017
Comments