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.

A337547 Number of compositions (ordered partitions) of n into distinct parts congruent to 1 mod 3.

This page as a plain text file.
%I A337547 #10 Nov 23 2020 08:25:38
%S A337547 1,1,0,0,1,2,0,1,2,0,1,4,6,1,4,6,1,6,12,1,6,18,25,8,24,25,8,30,49,10,
%T A337547 42,73,10,48,121,132,60,145,132,72,217,254,84,265,374,96,361,616,114,
%U A337547 433,856,846,553,1218,864,649,1578,1602,817,2180,2340,937,2780,3798,1129,3622
%N A337547 Number of compositions (ordered partitions) of n into distinct parts congruent to 1 mod 3.
%H A337547 <a href="/index/Com#comp">Index entries for sequences related to compositions</a>
%F A337547 G.f.: Sum_{k>=0} k! * x^(k*(3*k - 1)/2) / Product_{j=1..k} (1 - x^(3*j)).
%e A337547 a(12) = 6 because we have [7, 4, 1], [7, 1, 4], [4, 7, 1], [4, 1, 7], [1, 7, 4] and [1, 4, 7].
%t A337547 nmax = 65; CoefficientList[Series[Sum[k! x^(k (3 k - 1)/2)/Product[1 - x^(3 j), {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
%Y A337547 Cf. A000930, A016777, A032020, A032021, A035382, A261612, A337548, A339059, A339060.
%K A337547 nonn
%O A337547 0,6
%A A337547 _Ilya Gutkovskiy_, Nov 22 2020