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.

A255929 Expansion of exp( Sum_{n >= 1} A210672(n)*x^n/n ).

This page as a plain text file.
%I A255929 #8 Mar 01 2025 01:18:07
%S A255929 1,2,15,308,13399,1019106,119698377,20039968920,4527610159068,
%T A255929 1326616296092984,489092182592254708,221537815033845709776,
%U A255929 120928125204565597029220,78286897353506845258973144,59305342759674536454338570652,51970719684035315747385128783808
%N A255929 Expansion of exp( Sum_{n >= 1} A210672(n)*x^n/n ).
%C A255929 It appears that this sequence is integer valued.
%C A255929 The o.g.f. A(x) = 1 + 2*x + 15*x^2 + 308*x^3 + ... for this sequence is such that 1 + x*d/dx( log(A(x)) ) is the o.g.f. for A210672.
%C A255929 This sequence is the particular case m = 2 of the following general conjecture.
%C A255929 Let m be an integer and consider the sequence u(n) defined by the recurrence u(n) = m*Sum_{k = 0..n-1} binomial(2*n,2*k)*u(k) with the initial condition u(0) = 1. Then the expansion of exp( Sum_{n >= 1} u(n)*x^n/n ) has integer coefficients.
%C A255929 For cases see A255926(m = -3), A255882(m = -2), A255881(m = -1), A255928(m = 1) and A255930(m = 3).
%C A255929 Note that u(n), as a polynomial in the variable m, is the n-th row generating polynomial of A241171.
%F A255929 O.g.f.: exp(2*x + 26*x^2/2 + 842*x^3/3 + 50906*x^4/4 + ...) = 1 + 2*x + 15*x^2 + 308*x^3 + 13399*x^4 + ....
%F A255929 a(0) = 1 and a(n) = 1/n*Sum_{k = 0..n-1} A210672(n-k)*a(k) for n >= 1.
%p A255929 #A255929
%p A255929 A210672 := proc (n) option remember; if n = 0 then 1 else 2*add(binomial(2*n, 2*k)*A210672(k), k = 0 .. n-1) end if; end proc:
%p A255929 A255929 := proc (n) option remember; if n = 0 then 1 else add(A210672(n-k)*A255929(k), k = 0 .. n-1)/n end if; end proc:
%p A255929 seq(A255929(n), n = 0 .. 15);
%Y A255929 A210672, A241171, A255926(m = -3), A255882(m = -2), A255881(m = -1), A255928(m = 1), A255930(m = 3).
%K A255929 nonn,easy
%O A255929 0,2
%A A255929 _Peter Bala_, Mar 11 2015