login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A322798 Number of compositions (ordered partitions) of n into hexagonal numbers (A000384). 7

%I #9 Dec 30 2018 11:51:30

%S 1,1,1,1,1,1,2,3,4,5,6,7,9,12,16,22,29,37,47,60,77,101,133,174,226,

%T 292,376,486,632,823,1072,1394,1808,2342,3036,3939,5116,6648,8636,

%U 11211,14548,18875,24493,31795,41283,53604,69594,90338,117251,152184,197540

%N Number of compositions (ordered partitions) of n into hexagonal numbers (A000384).

%H Alois P. Heinz, <a href="/A322798/b322798.txt">Table of n, a(n) for n = 0..8828</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/HexagonalNumber.html">Hexagonal Number</a>

%H <a href="/index/Com#comp">Index entries for sequences related to compositions</a>

%F G.f.: 1/(1 - Sum_{k>=1} x^(k*(2*k-1))).

%p h:= proc(n) option remember; `if`(n<1, 0, (t->

%p `if`(t*(2*t-1)>n, t-1, t))(1+h(n-1)))

%p end:

%p a:= proc(n) option remember; `if`(n=0, 1,

%p add(a(n-i*(2*i-1)), i=1..h(n)))

%p end:

%p seq(a(n), n=0..60); # _Alois P. Heinz_, Dec 28 2018

%t nmax = 50; CoefficientList[Series[1/(1 - Sum[x^(k (2 k - 1)), {k, 1, nmax}]), {x, 0, nmax}], x]

%Y Cf. A000384, A006456, A023361, A181324, A278949, A279279, A322799, A322800.

%K nonn

%O 0,7

%A _Ilya Gutkovskiy_, Dec 26 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 30 10:25 EDT 2024. Contains 372131 sequences. (Running on oeis4.)