OFFSET
0,2
COMMENTS
EXAMPLE
The two cyclic partitions of five are 5 and 3+2 yielding (5+1)=6 and (3+1)*(2+1) = 4*3 = 12
The array begins
1
(empty)
3
4
5 9
6 12
7 15 16 27
8 18 20 36
MAPLE
A122401_row := proc(n)
local e, a, L;
L := [] ;
for e in ListTools[Reverse](partition(n)) do
if member(1, e) then
;
else
a := 1;
for p in e do
a := a*(p+1) ;
end do:
L := [op(L), a] ;
end if;
end do:
L ;
end proc:
seq(A122401_row(i), i=0..15); # R. J. Mathar, Aug 28 2018
CROSSREFS
KEYWORD
easy,nonn,tabf
AUTHOR
Alford Arnold, Sep 01 2006
EXTENSIONS
Extended by R. J. Mathar, Aug 28 2018
STATUS
approved