cp's OEIS Frontend

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.

A342254 Number of ways to write n as an ordered sum of ten powers of 2.

This page as a plain text file.
%I A342254 #4 Mar 07 2021 12:17:23
%S A342254 1,10,45,130,300,612,1095,1750,2655,3850,5281,7110,9460,12060,14940,
%T A342254 18352,21850,25380,29790,34740,39672,45480,51885,57870,64375,72090,
%U A342254 80145,88630,97660,106380,114736,122260,130050,139740,148990,157572,168240,178200,185490,196200,210082
%N A342254 Number of ways to write n as an ordered sum of ten powers of 2.
%F A342254 G.f.: ( Sum_{k>=0} x^(2^k) )^10.
%t A342254 nmax = 50; CoefficientList[Series[Sum[x^(2^k), {k, 0, Floor[Log[2, nmax]] + 1}]^10, {x, 0, nmax}], x] // Drop[#, 10] &
%Y A342254 Cf. A000079, A023359, A073267, A151759, A151760, A151761, A151762, A209229, A319922, A342250, A342251, A342252.
%K A342254 nonn
%O A342254 10,2
%A A342254 _Ilya Gutkovskiy_, Mar 07 2021