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

A099669
Partial sums of repdigits of A002276.
7
2, 24, 246, 2468, 24690, 246912, 2469134, 24691356, 246913578, 2469135800, 24691358022, 246913580244, 2469135802466, 24691358024688, 246913580246910, 2469135802469132, 24691358024691354, 246913580246913576, 2469135802469135798, 24691358024691358020
OFFSET
1,1
FORMULA
a(n) = (2/81)*(10^(n+1) - 9*n - 10). - R. Piyo (nagoya314(AT)yahoo.com), Dec 10 2004
a(n) = 12*a(n-1) - 21*a(n-2) + 10*a(n-3). - Matthew House, Jun 30 2016
G.f.: 2*x/((1 - x)^2*(1 - 10*x)). - Ilya Gutkovskiy, Jun 30 2016
EXAMPLE
2 + 22 + 222 + 2222 = a(4) = 2468.
MAPLE
A099669:=n->(2/81)*(10^(n+1) - 9*n - 10): seq(A099669(n), n=1..30); # Wesley Ivan Hurt, Apr 18 2017
MATHEMATICA
<<NumberTheory`NumberTheoryFunctions` Table[{k, Table[Apply[Plus, Table[k*(10^n-1)/9, {n, 1, m}]], {m, 1, 35}]}, {k, 1, 9}]
Table[2/9*Sum[10^i - 1, {i, n}], {n, 18}] (* Robert G. Wilson v, Nov 20 2004 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Labos Elemer, Nov 17 2004
STATUS
approved