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”).

A275459
G.f.: 3F2([4/9, 5/9, 8/9], [2/3, 1], 729 x).
1
1, 240, 111384, 61056996, 36134640360, 22349791271808, 14226080375707200, 9239577908667986880, 6091267058935364926620, 4062233028933305475849600, 2733980882372812975378956480, 1853783080629966591378982417800, 1264747920529034302126861656883140, 867379957865303554725274256161714560
OFFSET
0,2
COMMENTS
"Other hypergeometric 'blind spots' for Christol’s conjecture" - (see Bostan link).
LINKS
A. Bostan, S. Boukraa, G. Christol, S. Hassani, J-M. Maillard Ising n-fold integrals as diagonals of rational functions and integrality of series expansions: integrality versus modularity, arXiv:1211.6031 [math-ph], 2012.
FORMULA
G.f.: hypergeom([4/9, 5/9, 8/9], [2/3, 1], 729*x).
D-finite with recurrence n^2*(3*n-1)*a(n) -3*(9*n-5)*(9*n-4)*(9*n-1)*a(n-1)=0. - R. J. Mathar, Jul 27 2022
a(n) ~ Gamma(1/9) * (1 + 2*sin(Pi/18)) * 3^(6*n - 1/2) / (2*Pi*Gamma(1/3) * n^(7/9)). - Vaclav Kotesovec, Apr 27 2024
EXAMPLE
1 + 240*x + 111384*x^2 + 61056996*x^3 + ...
MATHEMATICA
HypergeometricPFQ[{4/9, 5/9, 8/9}, {2/3, 1}, 729 x] + O[x]^14 // CoefficientList[#, x]& (* Jean-François Alcover, Oct 23 2018 *)
PROG
(PARI) \\ system("wget http://www.jjj.de/pari/hypergeom.gpi");
read("hypergeom.gpi");
N = 12; x = 'x + O('x^N);
Vec(hypergeom([4/9, 5/9, 8/9], [2/3, 1], 729*x, N))
CROSSREFS
KEYWORD
nonn
AUTHOR
Gheorghe Coserea, Jul 31 2016
STATUS
approved