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

A086929
a(1) = 1, a(n) = n times (the digit reversal of the (n-1)-th partial sum).
1
1, 2, 9, 84, 345, 864, 35217, 180504, 5586408, 43430850, 530676234, 9780239700, 1055666381913, 18372986892414, 818136466402365, 314063593211808, 139031163059145687, 9080662161749058738, 64855015790195124351
OFFSET
1,2
LINKS
EXAMPLE
a(5) = 5*(reversal of (1+2+9+84)) = 5*(rev(96)) = 5*69 = 345.
MAPLE
digrev:= proc(n) local L, i;
L:= convert(n, base, 10);
add(L[-i]*10^(i-1), i=1..nops(L))
end proc:
A[1]:= 1: S:= 1:
for n from 2 to 20 do A[n]:= n*digrev(S); S:= S + A[n] od:
seq(A[i], i=1..20); # Robert Israel, Jun 02 2020
CROSSREFS
Sequence in context: A354045 A296581 A069234 * A193466 A354310 A262011
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Sep 19 2003
EXTENSIONS
More terms from Ray Chandler, Sep 23 2003
STATUS
approved