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.

A269791 G.f.: Product_{n>=1} 1/(1 - x^n/n^4) = Sum_{n>=0} a(n)*x^n/n!^4.

This page as a plain text file.
%I A269791 #10 Mar 06 2016 04:03:17
%S A269791 1,1,17,1393,359200,224991776,291968881696,701412781560352,
%T A269791 2873957814268080128,18859650596161401139200,
%U A269791 188619789441121624152354816,2761804817165898231731040301056,57271995555712767650976765232545792,1635810412682066454426684822491878391808
%N A269791 G.f.: Product_{n>=1} 1/(1 - x^n/n^4) = Sum_{n>=0} a(n)*x^n/n!^4.
%H A269791 Vaclav Kotesovec, <a href="/A269791/b269791.txt">Table of n, a(n) for n = 0..140</a>
%F A269791 a(n) ~ c * n!^4, where c = Product_{k>=2} 1/(1-1/k^4) = 4*Pi/sinh(Pi) = 4*A090986 = 1.08811621992853265180094633468815...
%t A269791 Table[n!^4 * SeriesCoefficient[Product[1/(1 - x^k/k^4), {k, 1, n}], {x, 0, n}], {n, 0, 20}]
%o A269791 (PARI) {a(n)=n!^4*polcoeff(prod(k=1, n, 1/(1-x^k/k^4 +x*O(x^n))), n)}
%o A269791 for(n=0, 20, print1(a(n), ", "))
%Y A269791 Cf. A007841, A249588, A249593, A269793, A269794.
%K A269791 nonn
%O A269791 0,3
%A A269791 _Vaclav Kotesovec_, Mar 05 2016