login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A072679
a(n) = (3*(n-1)+3)! *(3*(n-1)+6)! *2F2(3*n+1,3*n+4; 4,7; 1)/( 3! *6! *exp(1)), where 2F2(;;) is the generalized hypergeometric series.
1
1, 207775, 566828686621, 9011375448568566265, 545354187810192396620158501, 96830939680123110993863214244502671, 42331916293179268263941025436198550595621985
OFFSET
1,2
MAPLE
A072679 := proc(n)
(3*(n-1)+3)! *(3*(n-1)+6)! *hypergeom([3*n+1, 3*n+4], [ 4, 7], 1)/( 3! *6! *exp(1)) ;
simplify(%) ;
end proc:
seq(A072679(n), n=1..5) ; # R. J. Mathar, Nov 08 2011
MATHEMATICA
Table[(3*(n-1)+3)! * (3*(n-1)+6)! * HypergeometricPFQ[{3*n+1, 3*n+4}, {4, 7}, 1] /( 3! *6! *E), {n, 1, 20}] (* Vaclav Kotesovec, Jul 05 2018 *)
CROSSREFS
Sequence in context: A092011 A362758 A216900 * A147705 A237971 A282989
KEYWORD
nonn
AUTHOR
Karol A. Penson, Jul 01 2002
STATUS
approved