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!)
A293614 a(n) = (8*n + 18)*Pochhammer(n, 6) / 6!. 2
0, 26, 238, 1176, 4200, 12180, 30492, 68376, 140712, 270270, 490490, 848848, 1410864, 2264808, 3527160, 5348880, 7922544, 11490402, 16353414, 22881320, 31523800, 42822780, 57425940, 76101480, 99754200, 129442950, 166399506, 212048928, 268031456, 336226000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From Colin Barker, Jul 29 2019: (Start)
G.f.: 2*x*(13 + 15*x) / (1 - x)^8.
a(n) = (n*(1080 + 2946*n + 3121*n^2 + 1665*n^3 + 475*n^4 + 69*n^5 + 4*n^6)) / 360.
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8) for n>7.
(End)
MAPLE
A293614 := n -> (8*n + 18)*pochhammer(n, 6)/6!;
seq(A293614(n), n=0..29);
MATHEMATICA
LinearRecurrence[{8, -28, 56, -70, 56, -28, 8, -1}, {0, 26, 238, 1176, 4200, 12180, 30492, 68376}, 40] (* or *) a = 1/360 (1080 #1 + 2946 #1^2 + 3121 #1^3 + 1665 #1^4 + 475 #1^5 + 69 #1^6 + 4 #1^7) &; Table[a[n], {n, 0, 40}]
Table[(8*n + 18)*Pochhammer[n, 6]/6!, {n, 0, 50}] (* G. C. Greubel, Oct 23 2017 *)
PROG
(PARI) for(n=0, 50, print1((8*n + 18)*(n+5)*(n+4)*(n+3)*(n+2)*(n+1)*n/6!, ", ")) \\ G. C. Greubel, Oct 23 2017
(PARI) concat(0, Vec(2*x*(13 + 15*x) / (1 - x)^8 + O(x^40))) \\ Colin Barker, Jul 29 2019
(Magma) [(8*n + 18)*(n+5)*(n+4)*(n+3)*(n+2)*(n+1)*n/Factorial(6): n in [0..50]]; // G. C. Greubel, Oct 23 2017
CROSSREFS
Sequence in context: A196633 A196638 A163726 * A245873 A275880 A020537
KEYWORD
nonn,easy
AUTHOR
Peter Luschny, Oct 13 2017
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 24 17:51 EDT 2024. Contains 371962 sequences. (Running on oeis4.)