login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)