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.

A375607 Expansion of e.g.f. 1 / (exp(-x^3) - x).

This page as a plain text file.
%I A375607 #19 Aug 21 2024 11:22:00
%S A375607 1,1,2,12,72,480,3960,40320,463680,5866560,82857600,1297296000,
%T A375607 22133865600,407869862400,8096683795200,172405968134400,
%U A375607 3915525770956800,94443904345190400,2412049832704512000,65035187612185190400,1845812342328514560000
%N A375607 Expansion of e.g.f. 1 / (exp(-x^3) - x).
%F A375607 a(n) = n! * Sum_{k=0..floor(n/3)} (n-3*k+1)^k/k!.
%F A375607 a(n) ~ sqrt(2*Pi) * 3^((n+1)/3) * n^(n + 1/2) / ((1 + LambertW(3)) * exp(n) * LambertW(3)^((n+1)/3)). - _Vaclav Kotesovec_, Aug 21 2024
%o A375607 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(exp(-x^3)-x)))
%o A375607 (PARI) a(n) = n!*sum(k=0, n\3, (n-3*k+1)^k/k!);
%Y A375607 Cf. A072597, A375604.
%K A375607 nonn
%O A375607 0,3
%A A375607 _Seiichi Manyama_, Aug 21 2024