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.

A325856 Number of integer partitions of n such that every pair of distinct parts has a different product.

This page as a plain text file.
%I A325856 #7 Mar 13 2021 18:03:21
%S A325856 1,1,2,3,5,7,11,15,22,30,42,56,76,100,133,171,225,287,369,467,592,740,
%T A325856 931,1155,1435,1767,2178,2661,3254,3953,4798,5793,6991,8390,10069,
%U A325856 12022,14346,17054,20255,23960,28334,33390,39308,46148,54116,63295,73967,86224
%N A325856 Number of integer partitions of n such that every pair of distinct parts has a different product.
%H A325856 Fausto A. C. Cariboni, <a href="/A325856/b325856.txt">Table of n, a(n) for n = 0..150</a>
%e A325856 The five partitions of 15 not satisfying the condition are:
%e A325856   (8,4,2,1)
%e A325856   (6,4,3,2)
%e A325856   (6,3,3,2,1)
%e A325856   (6,3,2,2,1,1)
%e A325856   (6,3,2,1,1,1,1)
%t A325856 Table[Length[Select[IntegerPartitions[n],UnsameQ@@Times@@@Subsets[Union[#],{2}]&]],{n,0,30}]
%Y A325856 The subset case is A196724.
%Y A325856 The maximal case is A325859.
%Y A325856 The integer partition case is A325856.
%Y A325856 The strict integer partition case is A325855.
%Y A325856 Cf. A002033, A108917, A143823, A325853, A325854, A325857, A325858, A325877.
%K A325856 nonn
%O A325856 0,3
%A A325856 _Gus Wiseman_, May 31 2019