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

A081553
Sum of n-th row of A081551.
3
1, 21, 303, 4006, 50010, 600015, 7000021, 80000028, 900000036, 10000000045, 110000000055, 1200000000066, 13000000000078, 140000000000091, 1500000000000105, 16000000000000120, 170000000000000136, 1800000000000000153, 19000000000000000171, 200000000000000000190, 2100000000000000000210, 22000000000000000000231
OFFSET
1,2
FORMULA
a(n) = n*10^(n-1) + n*(n-1)/2.
From G. C. Greubel, May 27 2021: (Start)
G.f.: x*(1 -2*x -17*x^2 +99*x^3)/((1-x)^3 * (1-10*x)^2).
E.g.f.: (1/2)*x*( x*exp(x) + 2*exp(10*x) ). (End)
MATHEMATICA
Table[n*10^(n-1) +n(n-1)/2, {n, 40}] (* G. C. Greubel, May 27 2021 *)
PROG
(Sage) [n*10^(n-1) +binomial(n, 2) for n in (1..40)] # G. C. Greubel, May 27 2021
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Apr 01 2003
EXTENSIONS
Terms a(13) onward added by G. C. Greubel, May 27 2021
STATUS
approved