cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A361845 Expansion of 1/(1 - 9*x*(1-x)^3)^(1/3).

This page as a plain text file.
%I A361845 #18 Jul 12 2024 10:17:21
%S A361845 1,3,9,27,78,207,459,567,-1926,-20763,-120123,-569349,-2410200,
%T A361845 -9379449,-33818715,-112292001,-335018295,-837341388,-1317232530,
%U A361845 2358000072,35974607355,228270292803,1148026536963,5094839173779,20667058966044,77501033284779
%N A361845 Expansion of 1/(1 - 9*x*(1-x)^3)^(1/3).
%H A361845 Winston de Greef, <a href="/A361845/b361845.txt">Table of n, a(n) for n = 0..1669</a>
%F A361845 n*a(n) = 3 * ( (3*n-2)*a(n-1) - 3*(3*n-4)*a(n-2) + 3*(3*n-6)*a(n-3) - (3*n-8)*a(n-4) ) for n > 3.
%F A361845 a(n) = (-1)^n * Sum_{k=0..n} 9^k * binomial(-1/3,k) * binomial(3*k,n-k).
%F A361845 a(n) = (-9)^n*binomial(-1/3, n)*hypergeom([(1-3*n)/4, (2-3*n)/4, 3*(1-n)/4, -3*n/4], [1/3-n, 2/3-n, 2/3-n], 2^8/3^5). - _Stefano Spezia_, Jul 11 2024
%t A361845 a[n_]:=(-9)^n*Binomial[-1/3, n]HypergeometricPFQ[{(1-3*n)/4, (2-3*n)/4, 3*(1-n)/4, -3*n/4}, {1/3-n, 2/3-n, 2/3-n}, 2^8/3^5]; Array[a,26,0] (* _Stefano Spezia_, Jul 11 2024 *)
%o A361845 (PARI) my(N=30, x='x+O('x^N)); Vec(1/(1-9*x*(1-x)^3)^(1/3))
%Y A361845 Column k=3 of A361840.
%Y A361845 Cf. A361816.
%K A361845 sign
%O A361845 0,2
%A A361845 _Seiichi Manyama_, Mar 26 2023