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

A084008
a(n) = T(n) concatenated with reverse(T(n)) divided by 11, where T(n) is the n-th triangular number.
2
0, 1, 3, 6, 91, 141, 192, 262, 333, 414, 505, 606, 717, 829, 9591, 10911, 12421, 13941, 15561, 17281, 19092, 21012, 23032, 25152, 27273, 29593, 31923, 34443, 36964, 39594, 42324, 45154, 48075, 51015, 54145, 57276, 60606, 63937, 67377, 70917, 74548, 78288
OFFSET
0,3
EXAMPLE
a(12) = 7887/11 = 717.
MAPLE
a:= n-> (t-> parse(cat(t, (s-> seq(s[-i], i=1..length(s)))(""||t)))/11)(n*(n+1)/2):
seq(a(n), n=0..50); # Alois P. Heinz, Nov 17 2018
MATHEMATICA
r[n_] := FromDigits[Join[IntegerDigits[n], Reverse[IntegerDigits[n]]]]; Do[k = n*(n+1)/2; Print[r[k]/11], {n, 0, 50}] (* Ryan Propper, Sep 26 2005 *)
f[n_]:=Module[{idn=IntegerDigits[n]}, FromDigits[Join[idn, Reverse[ idn]]] /11]; f/@Accumulate[Range[0, 40]] (* Harvey P. Dale, Sep 15 2011 *)
CROSSREFS
Sequence in context: A211896 A299433 A036286 * A092680 A101574 A082980
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 23 2003
EXTENSIONS
More terms from Ryan Propper, Sep 26 2005
STATUS
approved