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.

A182966 E.g.f.: A(x) = Product_{n>=1} (1 + 3*x^n/n)^n.

This page as a plain text file.
%I A182966 #8 Oct 07 2020 08:15:50
%S A182966 1,3,6,72,342,3330,36720,366660,4974480,67178160,1043189280,
%T A182966 16836906240,303306806880,5705780240160,114832957599360,
%U A182966 2475901844095680,55754442891987840,1331875774475326080,33292197644365820160
%N A182966 E.g.f.: A(x) = Product_{n>=1} (1 + 3*x^n/n)^n.
%H A182966 Vaclav Kotesovec, <a href="/A182966/b182966.txt">Table of n, a(n) for n = 0..438</a>
%e A182966 E.g.f.: A(x) = 1 + 3*x + 6*x^2/2! + 72*x^3/3! + 342*x^4/4! +...
%e A182966 A(x) = (1+3x)*(1+3x^2/2)^2*(1+3x^3/3)^3*(1+3x^4/4)^4*(1+3x^5/5)^5*...
%t A182966 nmax = 20; CoefficientList[Series[Product[(1 + 3*x^k/k)^k, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* _Vaclav Kotesovec_, Oct 07 2020 *)
%o A182966 (PARI) {a(n,k=3)=n!*polcoeff(prod(m=1,n,(1+k*x^m/m+x*O(x^n))^m),n)}
%Y A182966 Cf. A181541, A182965, A182967, A007838.
%K A182966 nonn
%O A182966 0,2
%A A182966 _Paul D. Hanna_, Dec 19 2010