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.

A325399 Heinz numbers of integer partitions whose k-th differences are strictly decreasing for all k >= 0.

This page as a plain text file.
%I A325399 #5 May 03 2019 08:37:38
%S A325399 1,2,3,5,6,7,10,11,13,14,15,17,19,21,22,23,26,29,31,33,34,35,37,38,39,
%T A325399 41,43,46,47,51,53,55,57,58,59,61,62,65,67,69,70,71,73,74,77,79,82,83,
%U A325399 85,86,87,89,91,93,94,95,97,101,103,106,107,109,111,113,115
%N A325399 Heinz numbers of integer partitions whose k-th differences are strictly decreasing for all k >= 0.
%C A325399 First differs from A167171 in having 70. First differs from A325398 in lacking 42.
%C A325399 The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
%C A325399 The differences of a sequence are defined as if the sequence were increasing, so for example the differences of (6,3,1) are (-3,-2).
%C A325399 The zeroth differences of a sequence are the sequence itself, while the k-th differences for k > 0 are the differences of the (k-1)-th differences.
%C A325399 The enumeration of these partitions by sum is given by A325393.
%H A325399 Gus Wiseman, <a href="/A325325/a325325.txt">Sequences counting and ranking integer partitions by the differences of their successive parts.</a>
%e A325399 The sequence of terms together with their prime indices begins:
%e A325399     1: {}
%e A325399     2: {1}
%e A325399     3: {2}
%e A325399     5: {3}
%e A325399     6: {1,2}
%e A325399     7: {4}
%e A325399    10: {1,3}
%e A325399    11: {5}
%e A325399    13: {6}
%e A325399    14: {1,4}
%e A325399    15: {2,3}
%e A325399    17: {7}
%e A325399    19: {8}
%e A325399    21: {2,4}
%e A325399    22: {1,5}
%e A325399    23: {9}
%e A325399    26: {1,6}
%e A325399    29: {10}
%e A325399    31: {11}
%e A325399    33: {2,5}
%t A325399 primeptn[n_]:=If[n==1,{},Reverse[Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]];
%t A325399 Select[Range[100],And@@Table[Greater@@Differences[primeptn[#],k],{k,0,PrimeOmega[#]}]&]
%Y A325399 A subsequence of A005117.
%Y A325399 Cf. A056239, A112798, A320466, A320470, A325358, A325391, A325393, A325396, A325397, A325398, A325400, A325405, A325457, A325467.
%K A325399 nonn
%O A325399 1,2
%A A325399 _Gus Wiseman_, May 02 2019