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.
%I A352308 #12 Mar 12 2022 11:15:07 %S A352308 1,1,3,13,76,551,4803,48833,567465,7418263,107752293,1721642143, %T A352308 30008756055,566650322031,11523037802461,251062618129063, %U A352308 5834798259848815,144078299659541361,3766993649599221903,103961442644871088897,3020133228180079209075 %N A352308 Expansion of e.g.f. 1/(2 - exp(x) - x^4/24). %F A352308 a(n) = binomial(n,4) * a(n-4) + Sum_{k=1..n} binomial(n,k) * a(n-k) for n > 3. %t A352308 m = 20; Range[0, m]! * CoefficientList[Series[1/(2 - Exp[x] - x^4/24), {x, 0, m}], x] (* _Amiram Eldar_, Mar 12 2022 *) %o A352308 (PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(2-exp(x)-x^4/24))) %o A352308 (PARI) b(n, m) = if(n==0, 1, sum(k=1, n, (1+(k==m))*binomial(n, k)*b(n-k, m))); %o A352308 a(n) = b(n, 4); %Y A352308 Cf. A006155, A352306, A352307. %Y A352308 Cf. A352300. %K A352308 nonn %O A352308 0,3 %A A352308 _Seiichi Manyama_, Mar 11 2022