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.

A368767 a(n) = n! * (1 + Sum_{k=0..n} (-1)^k * binomial(k+2,3) / k!).

This page as a plain text file.
%I A368767 #10 Jan 05 2024 07:57:05
%S A368767 1,0,4,2,28,105,686,4718,37864,340611,3406330,37469344,449632492,
%T A368767 5845221941,81833107734,1227496615330,19639945846096,333879079382663,
%U A368767 6009823428889074,114186645148891076,2283732902977823060,47958390962534282489,1055084601175754216782
%N A368767 a(n) = n! * (1 + Sum_{k=0..n} (-1)^k * binomial(k+2,3) / k!).
%F A368767 a(0) = 1; a(n) = n*a(n-1) + (-1)^n * binomial(n+2,3).
%F A368767 a(n) = n! + (-1)^n * A368585(n).
%F A368767 E.g.f.: (1 - x * (1-x+x^2/6) * exp(-x)) / (1-x).
%o A368767 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1-x*sum(k=0, 2, binomial(2, k)*(-x)^k/(k+1)!)*exp(-x))/(1-x)))
%Y A368767 Cf. A368765, A368766, A368768.
%Y A368767 Cf. A368585, A368763.
%K A368767 nonn
%O A368767 0,3
%A A368767 _Seiichi Manyama_, Jan 04 2024