OFFSET
0,8
COMMENTS
For n instead of n+1 we have 0 followed by A001055.
Also the number of integer factorizations of n with sum < n. [When the sequence is interpreted as having offset 1 instead of 0. Clarified by Antti Karttunen, Jan 28 2025]
LINKS
Antti Karttunen, Table of n, a(n) for n = 0..20000
EXAMPLE
The a(5) = 1 through a(15) = 4 partitions with product n+1:
32 . 421 3311 5211 . 62111 . 721111 53111111 8211111
2221 431111 441111111
3221111 4221111111
22221111111
The a(1) = 1 through a(12) = 3 factorizations with sum < n:
() . . . . (2*3) . (2*4) (3*3) (2*5) . (2*6)
(2*2*2) (3*4)
(2*2*3)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], SameQ[Times@@#, n+1]&]], {n, 0, 30}]
PROG
(PARI)
A380218off1(n, m=n, e=n) = if(1==n, (e>0), sumdiv(n, d, if((d>1)&&(d<=m), A380218off1(n/d, d, e-d))));
A380218off0(n) = A380218off1(1+n); \\ Antti Karttunen, Jan 28 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 21 2025
EXTENSIONS
More terms from Antti Karttunen, Jan 28 2025
STATUS
approved