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

A277947
Squares whose largest decimal digit is 3.
8
12321, 123201, 130321, 1232100, 1320201, 3101121, 12320100, 13032100, 102030201, 102232321, 103002201, 123210000, 123232201, 132020100, 310112100, 1232010000, 1303210000, 1322122321, 1332323001, 2103231321, 10022212321, 10130221201, 10203020100, 10203222121
OFFSET
1,1
COMMENTS
A subsequence of A000290.
LINKS
PROG
(PARI) L=List(); for(n=1, 10000, if(vecmax(digits(n^2))==3, listput(L, n^2))); Vec(L)
(Magma) [n^2: n in [1..1000000] | Maximum(Intseq(n^2)) eq 3]; // Vincenzo Librandi, Nov 06 2016
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Colin Barker, Nov 05 2016
STATUS
approved