OFFSET
1,3
COMMENTS
Are there infinitely many terms not divisible by 100? - Charles R Greathouse IV, Sep 19 2012
Yes. For example, the squares of the type (k*10^m+1)^2, where m>0 and k = 2, 70, 970, 202470000 or m>1 and k = 10^m-3, belong to the sequence. - Bruno Berselli, Jan 10 2013
LINKS
Robert Israel, Table of n, a(n) for n = 1..544
Sylvester Smith, A Set of Conjectures on Smarandache Sequences, Bulletin of Pure and Applied Sciences, (Bombay, India), Vol. 15 E (No. 1), 1996, pp. 101-107.
Eric Weisstein's World of Mathematics, Smarandache Sequences
FORMULA
a(n) = A285550(n)^2. - Alois P. Heinz, Apr 21 2017
MAPLE
filter:= n -> convert(convert(n, base, 10), set) subset {0, 1, 4, 9}:
select(filter, [seq(n^2, n=1..10^5)]); # Robert Israel, Aug 14 2018
PROG
(Magma) [n^2: n in [0..2000] | forall{d: d in Intseq(n^2) | d in [0, 1, 4, 9]}]; // Bruno Berselli, Jan 10 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
R. Muller
EXTENSIONS
Offset changed to 1 by Alois P. Heinz, Apr 21 2017
STATUS
approved