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!)
A116156 a(n) = 5^n * n*(n + 1). 1
0, 10, 150, 1500, 12500, 93750, 656250, 4375000, 28125000, 175781250, 1074218750, 6445312500, 38085937500, 222167968750, 1281738281250, 7324218750000, 41503906250000, 233459472656250, 1304626464843750, 7247924804687500 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: 10*x/(1-5*x)^3. - Vincenzo Librandi, Feb 28 2013
a(n) = 15*a(n-1) -75*a(n-2) +125*a(n-3). - Vincenzo Librandi, Feb 28 2013
a(n) = 10*A084902(n). - Bruno Berselli, Feb 28 2013
E.g.f.: 5*x*(2 + 5*x)*exp(5*x). - G. C. Greubel, May 10 2019
From Amiram Eldar, Jul 20 2020: (Start)
Sum_{n>=1} 1/a(n) = 1 - 4*log(5/4).
Sum_{n>=1} (-1)^(n+1)/a(n) = 6*log(6/5) - 1. (End)
MATHEMATICA
Table[(n^2 + n) 5^n, {n, 0, 30}] (* or *) CoefficientList[Series[10 x/(1 - 5 x)^3, {x, 0, 30}], x](* Vincenzo Librandi, Feb 28 2013 *)
PROG
(Magma) [(n^2+n)*5^n: n in [0..30]]; /* or */ I:=[0, 10, 150]; [n le 3 select I[n] else 15*Self(n-1)-75*Self(n-2)+125*Self(n-3): n in [1..30]]; // Vincenzo Librandi, Feb 28 2013
(PARI) a(n)=(n^2+n)*5^n \\ Charles R Greathouse IV, Feb 28 2013
(Sage) [5^n*n*(n+1) for n in (0..30)] # G. C. Greubel, May 10 2019
(GAP) List([0..30], n-> 5^n*n*(n+1)) # G. C. Greubel, May 10 2019
CROSSREFS
Sequence in context: A271467 A212471 A157867 * A224124 A212472 A025750
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Apr 08 2007
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)