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

A179619
a(1)=1, a(n+1) = 10*a(n)+2*n-1
1
1, 13, 135, 1357, 13579, 135801, 1358023, 13580245, 135802467, 1358024689, 13580246911, 135802469133, 1358024691355, 13580246913577, 135802469135799, 1358024691358021, 13580246913580243, 135802469135802465, 1358024691358024687, 13580246913580246909
OFFSET
1,2
COMMENTS
Third column of A164851. The repeating pattern corresponds to the decimal expansion of 11/81 = 0.13580246913580246...
FORMULA
a(1)=1, a(2)=13, a(3)=135, a(n) = 12*a(n-1)-21*a(n-2)+10*a(n-3). - Harvey P. Dale, Aug 16 2012
G.f.: -x*(x+1) / ((x-1)^2*(10*x-1)). - Colin Barker, Oct 03 2015
MATHEMATICA
RecurrenceTable[{a[1] == 1, a[n] == 10 a[n - 1] + 2 n - 1}, a, {n,
30}] (* or *) LinearRecurrence[{12, -21, 10}, {1, 13, 135}, 30] (* Harvey P. Dale, Aug 16 2012 *)
PROG
(PARI) Vec(-x*(x+1)/((x-1)^2*(10*x-1)) + O(x^30)) \\ Colin Barker, Oct 03 2015
CROSSREFS
Cf. A164851.
Sequence in context: A132935 A132930 A130774 * A019519 A243216 A112225
KEYWORD
nonn,easy
AUTHOR
Mark Dols, Jul 20 2010
STATUS
approved