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 A303827 #23 Oct 06 2019 12:34:00 %S A303827 1,1,1,1,2,2,1,1,2,2,1,1,2,2,1,1,3,3,2,2,4,4,2,2,3,3,1,1,2,2,1,1,3,3, %T A303827 2,2,4,4,2,2,3,3,1,1,2,2,1,1,3,3,2,2,4,4,2,2,3,3,1,1,2,2,1,1,4,4,3,3, %U A303827 6,6,3,3,5,5,2,2,4,4,2,2,6,6,4,4,8,8,4,4,6,6 %N A303827 Number of ways of writing n as a sum of powers of 4, each power being used at most 5 times. %H A303827 Alois P. Heinz, <a href="/A303827/b303827.txt">Table of n, a(n) for n = 0..16383</a> %F A303827 G.f.: Product_{k>=0} (1-x^(6*4^k))/(1-x^(4^k)). %F A303827 G.f. A(x) satisfies: A(x) = (1 + x + x^2 + x^3 + x^4 + x^5) * A(x^4). - _Ilya Gutkovskiy_, Jul 09 2019 %e A303827 a(17) = 3 because 17=16+1=4+4+4+4+1=4+4+4+1+1+1+1+1. %p A303827 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<0, 0, %p A303827 add(b(n-j*4^i, i-1), j=0..min(5, n/4^i)))) %p A303827 end: %p A303827 a:= n-> b(n, ilog[4](n)): %p A303827 seq(a(n), n=0..120); # _Alois P. Heinz_, May 01 2018 %t A303827 m = 100; A[_] = 1; %t A303827 Do[A[x_] = (1+x+x^2+x^3+x^4+x^5) * A[x^4] + O[x]^m // Normal, {m}]; %t A303827 CoefficientList[A[x], x] (* _Jean-François Alcover_, Oct 06 2019, after _Ilya Gutkovskiy_ *) %Y A303827 Number of ways of writing n as a sum of powers of b, each power being used at most b+1 times: A117535 (b=3), this sequence (b=4), A303828 (b=5). %Y A303827 Cf. A277872. %K A303827 nonn,look %O A303827 0,5 %A A303827 _Seiichi Manyama_, May 01 2018