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.

A375372 Expansion of 1/( (1 + x) * (1 - x^2*(1 + x)^2) ).

This page as a plain text file.
%I A375372 #15 Aug 14 2024 07:30:49
%S A375372 1,-1,2,0,2,2,5,5,12,16,28,44,73,115,190,304,494,798,1293,2089,3384,
%T A375372 5472,8856,14328,23185,37511,60698,98208,158906,257114,416021,673133,
%U A375372 1089156,1762288,2851444,4613732,7465177,12078907,19544086,31622992,51167078,82790070
%N A375372 Expansion of 1/( (1 + x) * (1 - x^2*(1 + x)^2) ).
%H A375372 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (-1,1,3,3,1).
%F A375372 a(n) = -a(n-1) + a(n-2) + 3*a(n-3) + 3*a(n-4) + a(n-5).
%F A375372 a(n) = Sum_{k=0..floor(n/2)} binomial(2*k-1,n-2*k).
%F A375372 a(n) = A375373(n) + A375373(n-1).
%F A375372 2*a(n) = 2*(-1)^n + A000045(n) + A057078(n+1). - _R. J. Mathar_, Aug 14 2024
%o A375372 (PARI) my(N=50, x='x+O('x^N)); Vec(1/((1+x)*(1-x^2*(1+x)^2)))
%o A375372 (PARI) a(n) = sum(k=0, n\2, binomial(2*k-1, n-2*k));
%Y A375372 Cf. A093040, A375373.
%K A375372 sign,easy
%O A375372 0,3
%A A375372 _Seiichi Manyama_, Aug 13 2024