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!)
A267219 Expansion of exp( Sum_{n >= 1} A002895(n)*x^n/n ). 3

%I #16 Jan 04 2021 06:24:28

%S 1,4,22,152,1241,11444,115390,1243672,14104480,166460800,2028202288,

%T 25363355200,324098616925,4217387014948,55737166570870,

%U 746544123583928,10116388473816503,138496854665195996,1913322982776458234,26646647187379206440,373800949052597088329

%N Expansion of exp( Sum_{n >= 1} A002895(n)*x^n/n ).

%H Andrew Howroyd, <a href="/A267219/b267219.txt">Table of n, a(n) for n = 0..200</a>

%F n*a(n) = Sum_{k = 0..n-1} A002895(n-k)*a(k).

%F O.g.f. A(x) = exp( Sum_{n >= 1} A002895(n)*x^n/n ) = 1 + 4*x + 22*x^2 + 152*x^3 + 1241*x^4 + ....

%F The o.g.f. A(x) satisfies 1 + x* d/dx(log(A(x)) = Sum_{n >= 0} A002895(n)*x^n.

%F A(x)^(1/4) = 1 + x + 4*x*2 + 25*x^3 + 199*x^4 + 1837*x^5 + ... appears to have integer coefficients.

%p # define the Domb numbers

%p A002895 := n -> add(binomial(n,k)^2*binomial(2*n-2*k,n-k)*binomial(2*k,k), k = 0..n):

%p A267219 := proc (n) option remember; if n = 0 then 1 else 1/n*add( A002895(n-k)*A267219(k), k = 0..n-1) end if; end proc:

%p seq(A267219(n), n = 0..20);

%t m = 21;

%t domb[n_] := Sum[Binomial[n, k]^2 Binomial[2n - 2k, n - k] Binomial[2k, k], {k, 0, n}];

%t Exp[Sum[domb[n] x^n/n, {n, 1, m}]] + O[x]^m // CoefficientList[#, x]& (* _Jean-François Alcover_, Jan 04 2021 *)

%o (PARI) \\ here b(n) is A002895(n).

%o b(n)={sum(k=0, n, binomial(n, k)^2 * binomial(2*n-2*k, n-k) * binomial(2*k, k) )}

%o seq(n)={Vec(exp(sum(k=1, n, b(k)*x^k/k, O(x*x^n))))} \\ _Andrew Howroyd_, Dec 23 2019

%Y Cf. A002895, A267220.

%K nonn,easy

%O 0,2

%A _Peter Bala_, Jan 12 2016

%E Terms a(17) and beyond from _Andrew Howroyd_, Dec 23 2019

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)