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.

A205803 E.g.f.: -log( Sum_{n>=0} (-x)^(n*(n+1)/2) / (n*(n+1)/2)! ).

This page as a plain text file.
%I A205803 #8 Aug 27 2023 14:01:49
%S A205803 1,1,3,10,44,249,1693,13384,120932,1229759,13894429,172677450,
%T A205803 2341111850,34385290940,543885462121,9217332132024,166621796893824,
%U A205803 3200275345024464,65082833538054240,1397097303096855578,31569176387677926733,749012642530028865010
%N A205803 E.g.f.: -log( Sum_{n>=0} (-x)^(n*(n+1)/2) / (n*(n+1)/2)! ).
%e A205803 E.g.f.: A(x) = x + x^2/2! + 3*x^3/3! + 10*x^4/4! + 44*x^5/5! + 249*x^6/6! +...
%e A205803 where
%e A205803 exp(-A(x)) = 1 - x - x^3/3! + x^6/6! + x^10/10! - x^15/15! - x^21/21! +...
%o A205803 (PARI) {a(n) = n!*polcoeff(-log(sum(m=0, sqrtint(2*n+1), (-x)^(m*(m+1)/2)/(m*(m+1)/2)!+x*O(x^n))), n)}
%o A205803 for(n=1,25,print1(a(n),", "))
%Y A205803 Cf. A205804.
%K A205803 nonn
%O A205803 1,3
%A A205803 _Paul D. Hanna_, Jan 31 2012