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 A087221 #23 Mar 24 2015 06:22:16 %S A087221 1,1,1,1,2,3,4,5,7,10,14,19,26,36,50,69,96,133,184,254,352,488,676, %T A087221 935,1294,1792,2482,3436,4756,6584,9116,12621,17473,24190,33490,46365, %U A087221 64190,88868,123034,170334,235818,326478,451994,625764,866338,1199400,1660510 %N A087221 Number of compositions (ordered partitions) of n into powers of 4. %C A087221 Series trisections have a common ratio: %C A087221 sum(k>=0, a(3k+1)*x^k) / sum(k>=0, a(3k)*x^k) %C A087221 = sum(k>=0, a(3k+2)*x^k) / sum(k>=0, a(3k+1)*x^k) %C A087221 = sum(k>=0, a(3k+3)*x^k) / sum(k>=0, a(3k+2)*x^k) %C A087221 = sum(k>=0, x^((4^n-1)/3) ) = (1 + x + x^5 + x^21 + x^85 + x^341 +...). %H A087221 T. D. Noe, <a href="/A087221/b087221.txt">Table of n, a(n) for n=0..500</a> %F A087221 G.f.: 1/( 1 - sum(k>=0, x^(4^k) ) ). [_Joerg Arndt_, Oct 21 2012] %F A087221 G.f. satisfies A(x) = A(x^4)/(1 - x*A(x^4)), A(0) = 1. %F A087221 a(n) ~ c * d^n, where d=1.384450093664460722709070772652942206959424183007359023442195..., c=0.526605891697738213614083414993893445498621299371909641096106... - _Vaclav Kotesovec_, May 01 2014 %e A087221 A(x) = A(x^4) + x*A(x^4)^2 + x^2*A(x^4)^3 + x^3*A(x^4)^4 + ... %e A087221 = 1 +x + x^2 +x^3 +2x^4 +3x^5 +5x^6 +7x^7 + 10x^8 +... %p A087221 a:= proc(n) option remember; %p A087221 `if`(n=0, 1, add(a(n-4^i), i=0..ilog[4](n))) %p A087221 end: %p A087221 seq(a(n), n=0..50); # _Alois P. Heinz_, Jan 11 2014 %t A087221 a[n_] := a[n] = If[n==0, 1, Sum[a[n-4^i], {i, 0, Log[4, n]}]]; Table[a[n], {n, 0, 50}] (* _Jean-François Alcover_, Mar 24 2015, after _Alois P. Heinz_ *) %o A087221 (PARI) a(n)=local(A,m); if(n<1,n==0,m=1; A=1+O(x); while(m<=n,m*=4; A=1/(1/subst(A,x,x^4)-x)); polcoeff(A,n)) %o A087221 (PARI) %o A087221 N=66; x='x+O('x^N); %o A087221 Vec( 1/( 1 - sum(k=0, ceil(log(N)/log(4)), x^(4^k)) ) ) %o A087221 /* _Joerg Arndt_, Oct 21 2012 */ %Y A087221 Cf. A078932, A087222, A087232, A087224. Different from A003269. %K A087221 nonn %O A087221 0,5 %A A087221 _Paul D. Hanna_, Aug 27 2003