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.

A247919 Expansion of 1 / (1 + x^4 - x^5) in powers of x.

This page as a plain text file.
%I A247919 #24 Sep 11 2024 15:42:48
%S A247919 1,0,0,0,-1,1,0,0,1,-2,1,0,-1,3,-3,1,1,-4,6,-4,0,5,-10,10,-4,-5,15,
%T A247919 -20,14,1,-20,35,-34,13,21,-55,69,-47,-8,76,-124,116,-39,-84,200,-240,
%U A247919 155,45,-284,440,-395,110,329,-724,835,-505,-219,1053,-1559,1340
%N A247919 Expansion of 1 / (1 + x^4 - x^5) in powers of x.
%H A247919 Vincenzo Librandi, <a href="/A247919/b247919.txt">Table of n, a(n) for n = 0..1000</a>
%H A247919 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,0,-1,1).
%F A247919 G.f.: 1 / ((1 - x + x^2) * (1 + x - x^3)).
%F A247919 Convolution of A010892 and A247917.
%F A247919 a(-5-n) = A003520(n) for all n in Z.
%F A247919 0 = a(n) - a(n+1) - a(n+5) for all n in Z.
%e A247919 G.f. = 1 - x^4 + x^5 + x^8 - 2*x^9 + x^10 - x^12 + 3*x^13 - 3*x^14 + x^15 + ...
%t A247919 CoefficientList[Series[1/(1 + x^4 - x^5), {x, 0, 100}], x] (* _Vincenzo Librandi_, Sep 27 2014 *)
%t A247919 LinearRecurrence[{0,0,0,-1,1},{1,0,0,0,-1},60] (* _Harvey P. Dale_, Sep 11 2024 *)
%o A247919 (PARI) {a(n) = if( n<0, n=-5-n; polcoeff( 1 / (1 - x - x^5) + x * O(x^n), n), polcoeff( 1 / (1 + x^4 - x^5) + x * O(x^n), n))};
%o A247919 (Magma) m:=60; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1 + x^4 - x^5)));  // _G. C. Greubel_, Aug 04 2018
%Y A247919 Cf. A003520, A010892, A247917.
%K A247919 sign,easy
%O A247919 0,10
%A A247919 _Michael Somos_, Sep 26 2014