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!)
A339626 a(n) = A322437(A002110(n)). 1
0, 0, 0, 0, 3, 30, 315, 4830, 96453, 2296350 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
For n > 0, a(n) gives the number of unordered pairs of set partitions of {1,...,n} where no block of the other is a subset (or equal) to any block of the other. See A322441.
LINKS
FORMULA
For n > 0, a(n) = A322441(n)/2.
EXAMPLE
The a(4) = 3 such (unordered) pairs of set partitions of {1,2,3,4} are:
{{1,2},{3,4}}|{{1,3},{2,4}}
{{1,2},{3,4}}|{{1,4},{2,3}}
{{1,3},{2,4}}|{{1,4},{2,3}}.
MATHEMATICA
Block[{f}, f[n_] := If[n <= 1, {{}}, Join @@ Table[Map[Prepend[#, d] &, Select[f[n/d], Min @@ # >= d &]], {d, Rest[Divisors[n]]}]]; Map[Length[Select[Subsets[f[#], {2}], And[! Or @@ Divisible @@@ #, ! Or @@ Divisible @@@ Reverse /@ #] &@ Tuples[#] &]] &, FoldList[Times, 1, Prime@ Range@ 7]] ] (* Michael De Vlieger, Dec 10 2020, after Gus Wiseman at A322437 *)
CROSSREFS
Sequence in context: A131586 A163475 A200142 * A160473 A144283 A229299
KEYWORD
nonn,more
AUTHOR
Antti Karttunen, Dec 10 2020
STATUS
approved

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 July 12 23:13 EDT 2024. Contains 374257 sequences. (Running on oeis4.)