A053057 Squares whose digit sum is also a square.
0, 1, 4, 9, 36, 81, 100, 121, 144, 169, 196, 225, 324, 400, 441, 484, 529, 900, 961, 1521, 1681, 2025, 2304, 2601, 3364, 3481, 3600, 4489, 4624, 5776, 5929, 7225, 7396, 8100, 8836, 9025, 10000, 10201, 10404, 10609, 10816, 11025, 12100, 12321, 12544, 12769
Offset: 1
Examples
144 is a term: 144 = 12^2 and 1 + 4 + 4 = 9 = 3^2. - _Bernard Schott_, May 24 2017
References
- Felice Russo, A set of new Smarandache functions, sequences and conjectures in number theory, American Research Press, 2000.
Links
- Daniel Mondot, Table of n, a(n) for n = 1..1192
- Allan Wm. Johnson Jr., Problem 443, Crux Mathematicorum, Vol. 6, No. 3 (Mar. 1980), page 88.
- MathStackExchange, Numbers n such that the digit sum of n^2 is a square, 2015-2016.
Programs
-
Magma
[n^2: n in [0..120] | IsSquare(&+Intseq(n^2))]; // Bruno Berselli, May 26 2011
-
Mathematica
Select[Range[0,115]^2, IntegerQ[Sqrt[DigitSum[#]]]&] (* Stefano Spezia, Mar 07 2024 *)
-
PARI
lista(nn) = for (n=1, nn, if (issquare(sumdigits(n^2)), print1(n^2, ", "));); \\ Michel Marcus, May 25 2017
Extensions
More terms from James Sellers, Feb 28 2000
Comments