OFFSET
0,3
COMMENTS
A partition with no two distinct parts relatively prime is said to be intersecting.
LINKS
Fausto A. C. Cariboni, Table of n, a(n) for n = 0..350
FORMULA
a(n > 0) = A200976(n) + 1.
EXAMPLE
The a(1) = 1 through a(10) = 9 partitions (A = 10):
1 2 3 4 5 6 7 8 9 A
11 111 22 11111 33 1111111 44 63 55
1111 42 62 333 64
222 422 111111111 82
111111 2222 442
11111111 622
4222
22222
1111111111
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], And@@(GCD[##]>1&)@@@Subsets[Union[#], {2}]&]], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 29 2019
STATUS
approved