login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A174908
Numbers n such that the sum of the 4th powers of their digits > n.
1
2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73
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
Sequence in context: A102487 A343951 A102234 * A344543 A082757 A239089
KEYWORD
nonn,easy,base,fini,full
AUTHOR
Michel Lagneau, Dec 02 2010
STATUS
approved