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!)
A004986 a(n) = (2^n/n!) * Product_{k=0..n-1} (4*k + 7). 1
1, 14, 154, 1540, 14630, 134596, 1211364, 10729224, 93880710, 813632820, 6997242252, 59794615608, 508254232668, 4300612737960, 36248021648520, 304483381847568, 2550048322973382, 21300403638954132, 177503363657951100, 1476080603050330200, 12251469005317740660, 101512171758346994040 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1 - 8*x)^(-7/4).
a(n) ~ 4/3*Gamma(3/4)^-1*n^(3/4)*2^(3*n)*{1 + 21/32*n^-1 - ...}.
D-finite with recurrence: n*a(n) +2*(-4*n-3)*a(n-1)=0. - R. J. Mathar, Jan 17 2020
MAPLE
seq(2^n/n!*mul(4*k + 7, k=0..n-1), n=0..30);
MATHEMATICA
Table[2^n/n! Product[4k+7, {k, 0, n-1}], {n, 0, 25}] (* Harvey P. Dale, Apr 26 2019 *)
Table[8^n*Pochhammer[7/4, n]/n!, {n, 0, 25}] (* G. C. Greubel, Aug 22 2019 *)
PROG
(PARI) a(n) = 2^n*prod(k=0, n-1, 4*k+7)/n!;
vector(25, n, n--; a(n)) \\ G. C. Greubel, Aug 22 2019
(Magma) [1] cat [2^n*(&*[4*k+7: k in [0..n-1]])/Factorial(n): n in [1..25]]; // G. C. Greubel, Aug 22 2019
(Sage) [8^n*rising_factorial(7/4, n)/factorial(n) for n in (0..25)] # G. C. Greubel, Aug 22 2019
(GAP) List([0..25], n-> 2^n*Product([0..n-1], k-> 4*k+7)/Factorial(n) ); # G. C. Greubel, Aug 22 2019
CROSSREFS
Sequence in context: A229315 A257288 A125426 * A154248 A006865 A263474
KEYWORD
nonn,easy
AUTHOR
Joe Keane (jgk(AT)jgk.org)
EXTENSIONS
More terms from Sascha Kurz, Mar 24 2002
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)