A176760 Numbers k such that k^2 and k^4 have the same sum of digits.
0, 1, 3, 10, 17, 19, 27, 30, 57, 93, 100, 170, 190, 219, 267, 270, 300, 314, 327, 359, 387, 417, 423, 424, 570, 685, 693, 807, 828, 891, 917, 930, 963, 1000, 1207, 1223, 1317, 1333, 1673, 1693, 1700, 1827, 1864, 1900, 1917, 2141, 2190, 2202, 2213, 2364, 2367
Offset: 1
Examples
sod(3^2) = sod(9) = 9 = sod(81) = sod(3^4), so 3 is a term. sod(17^2) = sod(289) = 19 = sod(83521) = sod(17^4), so 17 is a term.
References
- Hans Schubart, Einfuehrung in die klassische und moderne Zahlentheorie, Vieweg, Braunschweig, 1974.
Programs
-
Mathematica
Select[Range[0,2000],Total[IntegerDigits[#^2]]==Total[IntegerDigits[#^4]]&] (* Harvey P. Dale, Jan 19 2011 *)
Extensions
Edited by D. S. McNeil, Nov 21 2010
a(43)-a(51) from Jason Yuen, Oct 13 2024
Comments