OFFSET
1,1
COMMENTS
The sequence is finite and contains 5832 numbers. If n > 19999, sum of 4th powers of digits < n (see reference).
REFERENCES
J.M. De Koninck, Ces nombres qui nous fascinent. Entry 19999 p.212. Ellipses 2008.
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..5832 (full sequence)
EXAMPLE
73 is in the sequence because 7^4 + 3^4 = 2482 > 73.
MAPLE
with(numtheory):k:=0:for n from 1 to 20000 do:l:=length(n):n0:=n:s:=0:for
m from 1 to l do:q:=n0:u:=irem(q, 10):v:=iquo(q, 10):n0:=v :s:=s+u^4:od: if s>n then k:=k+1:printf(`%d, `, n):else fi:od:print(k):
CROSSREFS
KEYWORD
nonn,easy,base,fini,full
AUTHOR
Michel Lagneau, Dec 02 2010
STATUS
approved