OFFSET
1,3
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
225 is in the sequence because it is a square divisible by 3.
MATHEMATICA
Join[{0}, Select[Range[200]^2, Divisible[#, IntegerLength[#]]&]] (* Harvey P. Dale, May 06 2015 *)
PROG
(PARI) lista(nn) = {for (i=0, nn, if (issquare(i) && (i % #Str(i) == 0) , print1(i, ", ")); ); } \\ Michel Marcus, Jun 01 2013
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 21 2006
EXTENSIONS
3364 inserted by Michel Marcus, Jun 01 2013
Corrected and extended by Harvey P. Dale, May 06 2015
STATUS
approved