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”).

A098839
Smith square numbers.
1
4, 121, 576, 729, 6084, 10201, 17424, 18496, 36481, 51529, 100489, 124609, 184041, 195364, 410881, 559504, 674041, 695556, 732736, 887364, 896809, 966289, 988036, 1038361, 1190281, 1238769, 1726596, 1852321, 2166784, 2975625, 3407716, 3613801, 3663396
OFFSET
1,1
LINKS
EXAMPLE
a(2) = 121 because 121 is a Smith number as well as a square.
MATHEMATICA
d[n_]:=IntegerDigits[n]; tr[n_]:=Transpose[FactorInteger[n]]; t={}; Do[If[!PrimeQ[n]&&Total[d[n]]==Total[d@tr[n][[1]]*tr[n][[2]], 2], AppendTo[t, n]], {n, Range[2, 1950]^2}]; t (* Jayanta Basu, Jun 04 2013 *)
CROSSREFS
Cf. A006753.
Sequence in context: A075114 A017186 A355751 * A227525 A071129 A241366
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, Oct 10 2004
STATUS
approved