A122484 Numbers k not ending in zero such that the sum of digits of k is >= the sum of digits of k^4 (in base 10).
1, 7, 19, 67, 124499, 594959999, 1349969999, 57999659949, 84936699999, 498998999999
Offset: 1
Examples
67 is a term because 67 has a digital sum of 13 and 67^4 = 20151121 which also has a digital sum of 13. 594959999 has a digital sum of 68 and 594959999^4 has a digital sum of 67, i.e., less than 68.
Crossrefs
Cf. A064210.
Programs
-
PARI
is_A122484(n)= n%10 && A007953(n) >= A007953(n^4) \\ M. F. Hasler, Jan 14 2012
Formula
Extensions
a(8) and a(9) from Martin Raab, Oct 17 2008
a(10) from Delbert L. Johnson, May 01 2023
Comments