login
O.g.f.: A(x) = Sum_{n>=0} x^n / Product_{k=0..n} (1 - k^2*x).
6

%I #47 Apr 25 2024 13:47:54

%S 1,1,2,7,37,264,2433,27913,386906,6346119,121159373,2655174768,

%T 66028903633,1845579100993,57506847262162,1983312152411351,

%U 75238783332550789,3122408658986242072,141063757638078429489

%N O.g.f.: A(x) = Sum_{n>=0} x^n / Product_{k=0..n} (1 - k^2*x).

%C From _Peter Bala_, Sep 27 2012: (Start)

%C Generalized Bell numbers; row sums of A036969.

%C a(n) is equal to the number of partitions of the set {1,1',2,2',...,n,n'} into disjoint nonempty subsets V1,...,Vk (1 <= k <= n) such that, for each 1 <= j <= k, if i is the least integer such that either i or i' belongs to Vj then {i,i'} is a subset of Vj.

%C Example: a(3) = 7: There is a single partition into one set {1,1',2,2',3,3'}; five partitions into two sets, namely, {1,1',2,2'}{3,3'}, {1,1',3,3'}{2,2'}, {1,1'}{2,2',3,3'}, {1,1',3}{2,2',3'} and {1,1',3'}{2,2',3}; and finally a single partition into three sets {1,1'}{2,2'}{3,3'}. (End)

%H S. Matsumoto and J. Novak, <a href="http://arxiv.org/abs/0905.1992">Jucys-Murphy Elements and Unitary Matrix Integrals</a> arXiv.0905.1992 [math.CO], 2009-2012.

%F From _Peter Bala_, Sep 27 2012: (Start)

%F Let E(x) = cosh(sqrt(2*x)) = Sum_{n >= 0} x^n/((2*n)!/2^n). A generating function is E((E(x) - 1)) = 1 + x + 2*x^2/6 + 7*x^3/90 + ..., where the sequence of denominators [1, 1, 6, 90, ...] is given by (2*n)!/2^n. Cf. A000110 which has generating function exp((exp(x) - 1)).

%F An e.g.f. is E((E(x^2/2) - 1)) = 1 + x^2/2! + 2*x^4/4! + 7*x^6/6! + .... (End)

%F G.f.: 1 + x/(U(0)-x) where U(k) = 1 - 2*x*k - x*k^2 + x*(x*(k+1)^2 - 1)/U(k+1) ; (continued fraction). - _Sergei N. Gladkovskii_, Oct 11 2012

%F G.f.: (G(0) - 1)/(x-1) where G(k) = 1 - 1/(1-k^2*x)/(1-x/(x-1/G(k+1) )); (continued fraction). - _Sergei N. Gladkovskii_, Jan 16 2013

%F Conjecture: a(n) = A369527(n-1, 0) = A369595(n-1, 0) for n > 0 with a(0) = 1. - _Mikhail Kurkov_, Apr 25 2024

%e O.g.f.: A(x) = 1 + x/(1-x) + x^2/((1-x)*(1-4x)) + x^3/((1-x)*(1-4x)*(1-9x)) + x^4/((1-x)*(1-4x)*(1-9x)*(1-16x)) + ...

%e Also generated by iterated binomial transforms in the following way:

%e [1,2,7,37,264,2433,27913,...] = BINOMIAL([1,1,4,21,151,1422,16629,..]);

%e [1,4,21,151,1422,16629,234529,...] = BINOMIAL^3([1,1,6,43,393,4596,...]);

%e [1,6,43,393,4596,66049,1125905,...] = BINOMIAL^5([1,1,8,73,811,11274,...]);

%e [1,8,73,811,11274,191685,...] = BINOMIAL^7([1,1,10,111,1453,23328,...]);

%e [1,10,111,1453,23328,456033,...] = BINOMIAL^9([1,1,12,157,2367,43014,...]);

%e etc.

%t nmax = 20;

%t A[x_] = Sum[x^n/Product[1 - k^2 x, {k, 0, n}], {n, 0, nmax}];

%t CoefficientList[A[x] + O[x]^nmax, x] (* _Jean-François Alcover_, Jul 27 2018 *)

%o (PARI) a(n)=polcoeff(sum(k=0, n, x^k/prod(j=0, k, 1-j^2*x+x*O(x^n))), n)

%Y Cf. A135921, A124373, A000110, A036969.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Dec 06 2007