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

A308250
Squares of automorphic numbers in base 12 (cf. A201919).
1
0, 1, 49, 64, 2401, 21904, 118336, 5764801, 1297152256, 22880797696, 149429406721, 3114293149696, 33232930569601, 2203546857570304, 3418922510231809
OFFSET
1,3
FORMULA
Equals A201919(n)^2.
EXAMPLE
2401 = c37_14 and sqrt(c37_14) = 37_14. Hence 2401 is in the sequence.
PROG
(Sage) [(n * n) for n in (0..1000000) if (n * n).str(base = 14).endswith(n.str(base = 14))]
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Jeremias M. Gomes, May 17 2019
STATUS
approved