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.

A356634 a(n) = n! * Sum_{k=0..floor(n/4)} (n - 4*k)^k/24^k.

This page as a plain text file.
%I A356634 #11 Aug 19 2022 09:25:56
%S A356634 1,1,2,6,24,125,780,5670,47040,439110,4561200,52182900,651974400,
%T A356634 8832874050,129001672800,2020822303500,33805804032000,601587281295000,
%U A356634 11348960759136000,226275153994890000,4755046903326720000,105061084389756495000,2435176811445618240000
%N A356634 a(n) = n! * Sum_{k=0..floor(n/4)} (n - 4*k)^k/24^k.
%F A356634 E.g.f.: Sum_{k>=0} x^k / (1 - k*x^4/24).
%t A356634 a[n_] := n! * Sum[(n - 4*k)^k/24^k, {k, 0, Floor[n/4]}]; a[0] = 1; Array[a, 23, 0] (* _Amiram Eldar_, Aug 19 2022 *)
%o A356634 (PARI) a(n) = n!*sum(k=0, n\4, (n-4*k)^k/24^k);
%o A356634 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(1-k*x^4/24))))
%Y A356634 Cf. A356632, A356633.
%K A356634 nonn
%O A356634 0,3
%A A356634 _Seiichi Manyama_, Aug 18 2022