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

A181412
Squares whose reverse is a triangular number; trailing zeros are permitted.
4
1, 100, 10000, 1000000, 1306449, 100000000, 130644900, 1044000721, 10000000000, 12957041241, 13064490000, 104400072100, 1000000000000, 1019072079081, 1174279984164, 1295704124100, 1306449000000, 6454272356676, 10440007210000
OFFSET
1,2
COMMENTS
Suggested by T. D. Noe.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..73 (terms < 10^24)
EXAMPLE
1306449 is 1143 squared, and its reverse, 9446031, is a triangular number.
MATHEMATICA
trnos = Accumulate[Range[300000]]; Select[Range[210000]^2, MemberQ[trnos, FromDigits[Reverse[IntegerDigits[#]]]] &]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Jan 30 2011
EXTENSIONS
a(12)-a(19) from Donovan Johnson, Feb 12 2011
STATUS
approved