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.

A358613 a(n) = Sum_{k=0..floor(n/3)} (-1)^k * (n-k)!/(k! * (n-3*k)!).

This page as a plain text file.
%I A358613 #12 Nov 25 2022 06:49:11
%S A358613 1,1,1,-1,-5,-11,-7,31,139,245,-71,-1937,-5989,-6251,25945,144479,
%T A358613 304843,-177899,-3517351,-11743505,-10097381,81902453,433558201,
%U A358613 840235039,-1481279605,-15839941451,-48073840007,-8454966289,564429256219,2518098130645,3490609807769
%N A358613 a(n) = Sum_{k=0..floor(n/3)} (-1)^k * (n-k)!/(k! * (n-3*k)!).
%H A358613 Seiichi Manyama, <a href="/A358613/b358613.txt">Table of n, a(n) for n = 0..1000</a>
%F A358613 a(n) = (4 * a(n-1) - a(n-2) - 2 * (2*n-3) * a(n-3))/3 for n > 2.
%o A358613 (PARI) a(n) = sum(k=0, n\3, (-1)^k*(n-k)!/(k!*(n-3*k)!));
%Y A358613 Cf. A247917, A358560.
%K A358613 sign
%O A358613 0,5
%A A358613 _Seiichi Manyama_, Nov 23 2022