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 A175378 #15 Sep 08 2022 08:45:51 %S A175378 0,0,0,0,1,3,5,8,14,26,45,75,125,212,358,598,993,1651,2745,4552,7526, %T A175378 12426,20501,33787,55605,91404,150118,246350,403929,661763,1083393, %U A175378 1772512,2898182,4735938,7734765,12626059,20600733,33597188,54769606 %N A175378 G.f. x^4*(2*x^2-1)/( (x^2-1)*(x^2+x-1)*(2*x^3-2*x^2+2*x-1) ). %H A175378 Vincenzo Librandi, <a href="/A175378/b175378.txt">Table of n, a(n) for n = 0..1000</a> %H A175378 F. V. Weinstein, <a href="http://arxiv.org/abs/math.NT/0307150">Notes on Fibonacci Partitions</a>, arXiv:math/0307150, variable h(n). %H A175378 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (3, -2, -1, 3, -4, 0, 2). %F A175378 a(n) = 3*a(n-1) -2*a(n-2) -a(n-3) +3*a(n-4) -4*a(n-5) +2*a(n-7). %t A175378 LinearRecurrence[{3,-2,-1,3,-4,0,2},{0,0,0,0,1,3,5},40] (* _Harvey P. Dale_, Mar 07 2012 *) %t A175378 CoefficientList[Series[x^4*(2*x^2 - 1)/((x^2 - 1)*(x^2 + x - 1)*(2*x^3 - 2*x^2 + 2*x - 1)), {x, 0, 40}], x] (* _Vincenzo Librandi_, Dec 20 2012 *) %o A175378 (Magma) I:=[0, 0, 0, 0, 1, 3, 5]; [n le 7 select I[n] else 3*Self(n-1) - 2*Self(n-2) - Self(n-3) + 3*Self(n-4) - 4*Self(n-5) + 2*Self(n-7): n in [1..40]]; // _Vincenzo Librandi_, Dec 20 2012 %Y A175378 Cf. A007896, A007897, A007898. %K A175378 nonn,easy %O A175378 0,6 %A A175378 _R. J. Mathar_, Apr 24 2010