login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 23 23:02 EDT 2024. Contains 376185 sequences. (Running on oeis4.)