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

A229701
Squares of triangular numbers, written backwards.
1
1, 9, 63, 1, 522, 144, 487, 6921, 5202, 5203, 6534, 4806, 1828, 52011, 441, 69481, 90432, 14292, 163, 144, 16335, 90046, 67167, 9, 526501, 102321, 488241, 638461, 522981, 522612, 610642, 487872, 127413, 520453, 9693, 655344, 902494, 180945, 4806, 4276, 123147
OFFSET
1,2
LINKS
FORMULA
n-th triangular number = T(n) = n*(n+1)/2.
EXAMPLE
a(3) = 63: T(3) = 3/2*(3+1) = 6 and 6^2 = 36. Writing it backwards gives 63.
a(6) = 144: T(6) = 6/2*(6+1) = 21 and 21^2 = 441. Writing it backwards gives 144.
MAPLE
with(StringTools):KD:= proc() local a; a:= parse(Reverse(convert(((n/2*(n+1))^2), string))); RETURN (a): end: seq(KD(), n=1..100);
MATHEMATICA
Table[FromDigits[Reverse[IntegerDigits[(n*(n + 1)/2)^2]]], {n, 1, 100}]
CROSSREFS
Cf. A004158.
Sequence in context: A084151 A346396 A240391 * A341627 A159235 A181403
KEYWORD
nonn,base,less
AUTHOR
K. D. Bajpai, Sep 27 2013
STATUS
approved