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 A033453 #19 Jul 08 2025 19:51:27 %S A033453 1,5,18,63,221,776,2725,9569,33602,117995,414345,1454992,5109273, %T A033453 17941453,63002258,221235399,776878533,2728045592,9579660701, %U A033453 33639430153,118126444802,414806579603,1456612858961,5114964721440,17961439747441,63072442405845,221481854849938,777743974335503,2731084630047981 %N A033453 "INVERT" transform of squares A000290. %C A033453 Number of compositions of n+1 whose parts equal to q can be of q^2 kinds. Example: a(1)=5 because we have (2),(2'),(2"),(2'") and (1,1). Row sums of A105495. - _Emeric Deutsch_, Apr 10 2005 %H A033453 Colin Barker, <a href="/A033453/b033453.txt">Table of n, a(n) for n = 0..1000</a> %H A033453 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (4,-2,1). %F A033453 G.f.: (1 + x) / (1 - 4*x + 2*x^2 - x^3). %F A033453 a(n) = 4*a(n-1) - 2*a(n-2) + a(n-3) for n>2. - _Colin Barker_, Mar 19 2019 %p A033453 read transforms; [seq(n^2,n=1..50)]; INVERT(%); %t A033453 nn=20;a=(x+x^2)/(1-x)^3;Drop[CoefficientList[Series[1/(1-a),{x,0,nn}],x],1] (* _Geoffrey Critzer_, Aug 31 2012*) %o A033453 (PARI) Vec((1 + x) / (1 - 4*x + 2*x^2 - x^3) + O(x^30)) \\ _Colin Barker_, Mar 19 2019 %Y A033453 Cf. A105495. %K A033453 nonn,easy %O A033453 0,2 %A A033453 _N. J. A. Sloane_