A226970 Fixed points for the operation of repeatedly replacing a number with the sum of the ninth powers of its digits.
0, 1, 146511208, 472335975, 534494836, 912985153
Offset: 1
Examples
a(3) = A003321(9); a(4) = 472335975 = 4^9 + 7^9 + 2^9 + 3^9 + 3^9 + 5^9 + 9^9 + 7^9 + 5^9.
Programs
-
PARI
is_A226970(n)=n==sum(i=1,#n=digits(n),n[i]^9) for(n=0,4112105981,is_A226970(n)&&print1(n",")) \\ M. F. Hasler, Apr 12 2015
Comments