OFFSET
0,2
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..400
W. Lang, On generalizations of Stirling number triangles, J. Integer Seqs., Vol. 3 (2000), #00.2.4.
Index entries for linear recurrences with constant coefficients, signature (100, -4500, 120000, -2100000, 25200000, -210000000, 1200000000, -4500000000, 10000000000, -10000000000).
FORMULA
a(n) = 10^(n-1)*binomial(n+10, 9).
G.f.: (-1 + (1-10*x)^(-10))/(x*10^2).
MATHEMATICA
Table[10^(n - 1)*Binomial[n + 10, 9], {n, 0, 30}] (* G. C. Greubel, Aug 16 2018 *)
PROG
(PARI) vector(30, n, n--; 10^(n-1)*binomial(n+10, 9)) \\ G. C. Greubel, Aug 16 2018
(Magma) [10^(n-1)*Binomial(n+10, 9): n in [0..30]]; // G. C. Greubel, Aug 16 2018
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
STATUS
approved