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 A348310 #19 Oct 21 2022 21:24:19 %S A348310 1,1,1,1,1,1,1,1,1,1,0,-5,-20,-55,-125,-251,-461,-791,-1286,-2001, %T A348310 -3001,-4356,-6121,-8281,-10626,-12500,-12340,-6885,10110,49875, %U A348310 131626,286921,565781,1044971,1838626,3110751,5087561,8064366,12395461,18444251,26451625,36249035,46692715,54618710 %N A348310 a(n) = Sum_{k=0..floor(n/10)} (-1)^k * binomial(n-5*k,5*k). %H A348310 Seiichi Manyama, <a href="/A348310/b348310.txt">Table of n, a(n) for n = 0..1000</a> %H A348310 <a href="/index/Rec#order_10">Index entries for linear recurrences with constant coefficients</a>, signature (5,-10,10,-5,1,0,0,0,0,-1). %F A348310 G.f.: (1-x)^4/((1-x)^5 + x^10). %F A348310 a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) - a(n-10). %t A348310 LinearRecurrence[{5, -10, 10, -5, 1, 0, 0, 0, 0, -1}, {1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, 45] (* _Amiram Eldar_, Oct 11 2021 *) %o A348310 (PARI) a(n) = sum(k=0, n\10, (-1)^k*binomial(n-5*k, 5*k)); %o A348310 (PARI) my(N=66, x='x+O('x^N)); Vec((1-x)^4/((1-x)^5+x^10)) %Y A348310 Cf. A348308, A348309. %Y A348310 Cf. A289306, A348290. %K A348310 sign,easy %O A348310 0,12 %A A348310 _Seiichi Manyama_, Oct 11 2021