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

A093849
Row sums of triangle A093846.
2
9, 153, 2097, 26496, 319995, 3749994, 42999985, 484999992, 5399999991, 59499999990, 649999999935, 7049999999988, 75999999999924, 814999999999941, 8699999999999985, 92499999999999984, 979999999999999902
OFFSET
1,1
LINKS
FORMULA
a(n) = n*(2*10^(n-1) - 2 + (n+1)*floor(9*10^(n-1)/n))/2.
MATHEMATICA
Table[n*(2*10^(n-1) -2 +(n+1)*Floor[9*10^(n-1)/n])/2, {n, 1, 20}] (* G. C. Greubel, Mar 22 2019 *)
PROG
(PARI) {a(n) = n*(2*10^(n-1) -2 +(n+1)*floor(9*10^(n-1)/n))/2}; \\ G. C. Greubel, Mar 22 2019
(Magma) [n*(2*10^(n-1) -2 +(n+1)*Floor(9*10^(n-1)/n))/2: n in [1..20]]; // G. C. Greubel, Mar 22 2019
(Sage) [n*(2*10^(n-1) -2 +(n+1)*floor(9*10^(n-1)/n))/2 for n in (1..20)] # G. C. Greubel, Mar 22 2019
CROSSREFS
Cf. A093846.
Sequence in context: A143905 A274502 A249642 * A165232 A246641 A169958
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Apr 18 2004
EXTENSIONS
Edited and extended by David Wasserman, Mar 26 2007
STATUS
approved