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!)
A128013 a(n) = (n^3 +n)*5^n. 1
10, 250, 3750, 42500, 406250, 3468750, 27343750, 203125000, 1441406250, 9863281250, 65527343750, 424804687500, 2697753906250, 16833496093750, 103454589843750, 627441406250000, 3761291503906250, 22315979003906250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
G.f.: 10*x(1+5*x+25*x^2)/(1-5*x)^4. - Vincenzo Librandi, Feb 22 2013
a(n) = 20*a(n-1) -150*a(n-2) +500*a(n-3) -625*a(n-4). - Vincenzo Librandi, Feb 23 2013
MATHEMATICA
Table[(n^3 + n) 5^n, {n, 30}] (* or *) CoefficientList[Series[10 (1 + 5 x + 25 x^2)/(1 - 5 x)^4, {x, 0, 30}], x] (* Vincenzo Librandi, Feb 22 2013 *)
PROG
(Magma) [(n^3 + n)*5^n: n in [1..20]]; // Vincenzo Librandi, Feb 22 2013
(Magma) I:=[10, 250, 3750, 42500]; [n le 4 select I[n] else 20*Self(n-1)-150*Self(n-2)+500*Self(n-3)-625*Self(n-4): n in [1..20]]; // Vincenzo Librandi, Feb 23 2013
(PARI) for(n=1, 30, print1((n^3 +n)*5^n, ", ")) \\ G. C. Greubel, May 08 2018
CROSSREFS
Sequence in context: A211093 A108792 A265854 * A178021 A134262 A240289
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, May 02 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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)