The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A255673 Coefficients of A(x), which satisfies: A(x) = 1 + x*A(x)^3 + x^2*A(x)^6. 8

%I #42 May 01 2024 13:43:10

%S 1,1,4,21,127,833,5763,41401,305877,2309385,17739561,138197876,

%T 1089276972,8670856834,69606939717,562879492551,4580890678781,

%U 37490975387565,308369889858450,2547741413147700,21133987935358776,175947462569886786,1469656053534121804

%N Coefficients of A(x), which satisfies: A(x) = 1 + x*A(x)^3 + x^2*A(x)^6.

%C This sequence is the next after A001006 and A006605.

%H Alois P. Heinz, <a href="/A255673/b255673.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n) = 1/(3*n+1) * Sum_{k=0..n} (-1)^k * binomial(3*n+1, k) * binomial(6*n+2-2*k, n-k). (conjectured)

%F G.f. A(x) satisfies A(x) = G(x*A(x)), where G is g.f. of A006605.

%F G.f. A(x) satisfies A(x) = H(x*A(x)^2), where H is g.f. of A001006.

%F From _Peter Bala_, Jul 27 2023: (Start)

%F Define b(n) = [x^n] (1 + x + x^2)^(3*n). Then A(x)^3 = exp(Sum_{n >= 1} b(n)*x^n/n).

%F A(x^3) = (1/x) * series reversion of x/(1 + x^3 + x^6) = 1 + x^3 + 4*x^6 + 21*x^9 + 127*x^12 + .... (End)

%F a(n) = (1/(3*n+1)) * Sum_{k=0..floor(n/2)} binomial(n-k,k) * binomial(3*n+1,n-k). - _Seiichi Manyama_, Sep 02 2023

%F a(n+1) = Sum_{j=0..3*n+4} binomial(j,2*j-5*n-7)*binomial(3*n+4,j) /(3*n+4). (conjectured). [_Vladimir Kruchinin_, Mar 09 2013]

%e A(x) = 1 + x + 4*x^2 + 21*x^3 + 127*x^4 + 833*x^5 + 5763*x^6 ...

%p a:= n-> coeff(series(RootOf(1-A+x*A^3+x^2*A^6, A), x, n+1), x, n):

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Jul 15 2015

%p # second Maple program:

%p a:= proc(n) option remember; `if`(n<2, 1, 9*(((3*n-1))*

%p (2*n-1)*(3*n-2)*(9063*n^4-18126*n^3+8403*n^2+660*n-280)*a(n-1)

%p +(27*(n-1))*(3*n-1)*(3*n-4)*(3*n-2)*(3*n-5)*(57*n^2-2)*a(n-2))

%p /((5*(5*n+2))*(5*n-1)*(5*n+1)*(5*n-2)*n*(57*n^2-114*n+55)))

%p end:

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Jul 16 2015

%t m = 30; A[_] = 0;

%t Do[A[x_] = 1 + x A[x]^3 + x^2 A[x]^6 + O[x]^m, {m}];

%t CoefficientList[A[x], x] (* _Jean-François Alcover_, Oct 04 2019 *)

%o (PARI) a(n) = sum(k=0, n\2, binomial(n-k, k)*binomial(3*n+1, n-k))/(3*n+1); \\ _Seiichi Manyama_, Sep 02 2023

%Y Cf. A001006, A006605.

%Y Cf. A365183, A365189.

%K nonn

%O 0,3

%A _Werner Schulte_, Jul 10 2015

%E More terms from _Alois P. Heinz_, Jul 15 2015

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 June 7 17:05 EDT 2024. Contains 373203 sequences. (Running on oeis4.)