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.

A324755 Number of integer partitions of n not containing 1 or any part whose prime indices all belong to the partition.

This page as a plain text file.
%I A324755 #6 Mar 16 2019 10:13:12
%S A324755 1,0,1,1,2,1,4,3,5,6,10,7,16,14,23,23,35,34,53,54,75,80,112,115,160,
%T A324755 169,223,244,315,339,442,478,604,664,832,910,1131,1245,1524,1689,2054,
%U A324755 2263,2743,3039,3634,4042,4809,5343,6326,7035,8276,9217,10795,12011
%N A324755 Number of integer partitions of n not containing 1 or any part whose prime indices all belong to the partition.
%C A324755 A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
%C A324755 For example, (6,2) is such a partition because the prime indices of 6 are {1,2}, which do not all belong to the partition. On the other hand, (5,3) is not such a partition because the prime indices of 5 are {3}, and 3 belongs to the partition.
%e A324755 The a(2) = 1 through a(10) = 10 integer partitions (A = 10):
%e A324755   (2)  (3)  (4)   (5)  (6)    (7)   (8)     (9)    (A)
%e A324755             (22)       (33)   (43)  (44)    (54)   (55)
%e A324755                        (42)   (52)  (62)    (63)   (64)
%e A324755                        (222)        (422)   (72)   (73)
%e A324755                                     (2222)  (333)  (82)
%e A324755                                             (522)  (433)
%e A324755                                                    (442)
%e A324755                                                    (622)
%e A324755                                                    (4222)
%e A324755                                                    (22222)
%t A324755 Table[Length[Select[IntegerPartitions[n],!MemberQ[#,k_/;SubsetQ[#,PrimePi/@First/@If[k==1,{},FactorInteger[k]]]]&]],{n,0,30}]
%Y A324755 The subset version is A324739, with maximal case A324762. The strict case is A324750. The Heinz number version is A324760. An infinite version is A324694.
%Y A324755 Cf. A000837, A001462, A051424, A112798, A276625, A290822, A304360, A306844, A324695, A324696, A324744.
%K A324755 nonn
%O A324755 0,5
%A A324755 _Gus Wiseman_, Mar 16 2019