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.

A307722 G.f. A(x) satisfies: A(x) = x*exp(2*Sum_{n>=1} Sum_{k>=1} n*a(n)*x^(n*(2*k-1))/(2*k - 1)).

This page as a plain text file.
%I A307722 #18 Apr 24 2019 19:44:48
%S A307722 0,1,2,10,78,794,9870,143610,2382350,44266538,909575170,20468012850,
%T A307722 500542618118,13218631046786,374965272837542,11372416113131346,
%U A307722 367296622702990270,12587154399475110546,456238999451039779510,17440439387336903608866,701272672299320517560470
%N A307722 G.f. A(x) satisfies: A(x) = x*exp(2*Sum_{n>=1} Sum_{k>=1} n*a(n)*x^(n*(2*k-1))/(2*k - 1)).
%F A307722 G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x * Product_{n>=1} ((1 + x^n)/(1 - x^n))^(n*a(n)).
%e A307722 G.f.: A(x) = x + 2*x^2 + 10*x^3 + 78*x^4 + 794*x^5 + 9870*x^6 + 143610*x^7 + 2382350*x^8 + 44266538*x^9 + ...
%t A307722 a[n_] := a[n] = SeriesCoefficient[x Exp[2 Sum[Sum[j a[j] x^(j (2 k - 1))/(2 k - 1), {k, 1, n - 1}], {j, 1, n - 1}]], {x, 0, n}]; a[1] = 1; Table[a[n], {n, 0, 20}]
%t A307722 a[n_] := a[n] = SeriesCoefficient[x Product[((1 + x^k)/(1 - x^k))^(k a[k]), {k, 1, n - 1}], {x, 0, n}]; a[1] = 1; Table[a[n], {n, 0, 20}]
%Y A307722 Cf. A073075, A307708, A307709.
%K A307722 nonn
%O A307722 0,3
%A A307722 _Ilya Gutkovskiy_, Apr 24 2019