The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A014917 a(1)=1, a(n) = n*5^(n-1) + a(n-1). 3
1, 11, 86, 586, 3711, 22461, 131836, 756836, 4272461, 23803711, 131225586, 717163086, 3890991211, 20980834961, 112533569336, 600814819336, 3194808959961, 16927719116211, 89406967163086, 470876693725586 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
From Gary Detlefs, Aug 31 2021 (Start)
This is the x=5 member of the x-family of sequences with member a(x, n) = x^n*Sum_{k=1..n} S(x, k), with S(x, k) = Sum_{j=1..k} 1/x^j.
S(x, k) = (x^k - 1)/((x-1)*x^k) = (1/x^k)*Sum_{j=0..k-1} x^j, and a(x,n) = ((n*(x-1) - 1)*x^n + 1)/(x-1)^2.
The sequence {x^k*S(x, k)} with recurrence signature (x+1, -x) leads to sequence {a(x, n)} with recurrence signature (2*x+1, -x*(x+2), x^2). (End) [Rewritten by Wolfdieter Lang, Nov 30 2021]
LINKS
FORMULA
From Vincenzo Librandi, Oct 23 2012: (Start)
a(n) = 10*a(n-1) - 25*a(n-2) + 1; a(1)=1, a(2)=11.
G.f.: x/((1-x)*(1-5*x)^2). (End)
a(n) = 11*a(n-1) - 35*a(n-2) + 25*a(n-3); a(1)=1, a(2)=11, a(3)=86. - Harvey P. Dale, May 06 2013
a(n) = 5^n*Sum_{k=1..n} (Sum_{j=1..k} 1/x^j) = ((4*n - 1)*5^n + 1)/4^2. See the general comment above, and the first formula. -Gary Detlefs, Aug 31 2021 [Edited by Wolfdieter Lang, Nov 30 2021]
MATHEMATICA
CoefficientList[Series[1/((1 - x)(1 - 5 x)^2), {x, 0, 40}], x] (* Vincenzo Librandi, Oct 23 2012 *)
LinearRecurrence[{11, -35, 25}, {1, 11, 86}, 20] (* Harvey P. Dale, May 06 2013 *)
PROG
(Magma) I:=[1, 11]; [n le 2 select I[n] else 10*Self(n-1)-25*Self(n-2)+ 1: n in [1..30]]; // Vincenzo Librandi, Oct 23 2012
CROSSREFS
Sequence in context: A320940 A012794 A302954 * A080962 A243879 A298253
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 June 8 13:51 EDT 2024. Contains 373217 sequences. (Running on oeis4.)