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!)
A269457 a(n) = 5*(n + 1)*(n + 4)/2. 1
10, 25, 45, 70, 100, 135, 175, 220, 270, 325, 385, 450, 520, 595, 675, 760, 850, 945, 1045, 1150, 1260, 1375, 1495, 1620, 1750, 1885, 2025, 2170, 2320, 2475, 2635, 2800, 2970, 3145, 3325, 3510, 3700, 3895, 4095, 4300, 4510, 4725, 4945, 5170, 5400, 5635 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
More generally, the ordinary generating function for the sequences of the form k*(n + 1)*(n - 1 + k)/2 is (k*(k - 1)/2 + (k*(3 - k)/2)*x)/(1 - x)^3(see links section).
LINKS
FORMULA
G.f.: 5*(2 - x)/(1 -x)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
a(n) = Sum_{k=0..n} 5*(k + 2) = Sum_{k=0..n} A008587(k + 2).
Sum_{n>=0} 1/a(n) = 11/45 = 0.24444444444... = A040002.
a(n) = 5*A000096(n+1).
a(n) = A055998(2*n+2) + A055998(n+1). - Bruno Berselli, Sep 23 2016
EXAMPLE
a(0) = 0 + 1 + 2 + 3 + 4 = 10;
a(1) = 0 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + 5 = 25;
a(2) = 0 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + 5 + 2 + 3 + 4 + 5 + 6 = 45, etc.
MATHEMATICA
Table[5 (n + 1) ((n + 4)/2), {n, 0, 45}]
Table[Sum[5 (k + 2), {k, 0, n}], {n, 0, 45}]
LinearRecurrence[{3, -3, 1}, {10, 25, 45}, 46]
PROG
(Magma) [5*(n+1)*(n+4)/2: n in [0..50]]; // Vincenzo Librandi, Feb 28 2016
(PARI) a(n) = 5*(n + 1)*(n + 4)/2; \\ Michel Marcus, Feb 29 2016
(PARI) Vec(5*(2-x)/(1-x)^3 + O(x^100)) \\ Altug Alkan, Mar 04 2016
CROSSREFS
Sequence in context: A345853 A047721 A155576 * A043123 A043903 A163631
KEYWORD
nonn,easy
AUTHOR
Ilya Gutkovskiy, Feb 27 2016
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 May 12 20:41 EDT 2024. Contains 372494 sequences. (Running on oeis4.)