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.

A320466 Number of partitions of n such that the successive differences of consecutive parts are nonincreasing.

This page as a plain text file.
%I A320466 #23 Jan 09 2021 02:46:21
%S A320466 1,1,2,3,4,5,7,7,9,12,12,13,18,17,21,25,24,27,34,33,38,44,43,47,58,56,
%T A320466 62,70,70,78,90,84,96,109,108,118,132,127,140,158,158,167,189,185,204,
%U A320466 221,218,236,260,261,282,301,299,322,358,350,376,405,404,432,472,466,500
%N A320466 Number of partitions of n such that the successive differences of consecutive parts are nonincreasing.
%C A320466 Partitions are usually written with parts in descending order, but the conditions are easier to check "visually" if written in ascending order.
%C A320466 Partitions (p(1), p(2), ..., p(m)) such that p(k-1) - p(k-2) >= p(k) - p(k-1) for all k >= 3.
%C A320466 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). Then a(n) is the number of integer partitions of n whose differences are weakly decreasing. The Heinz numbers of these partitions are given by A325361. Of course, the number of such integer partitions of n is also the number of reversed integer partitions of n whose differences are weakly decreasing, which is the author's interpretation. - _Gus Wiseman_, May 03 2019
%H A320466 Fausto A. C. Cariboni, <a href="/A320466/b320466.txt">Table of n, a(n) for n = 0..1000</a>
%H A320466 Gus Wiseman, <a href="/A325325/a325325.txt">Sequences counting and ranking integer partitions by the differences of their successive parts.</a>
%e A320466 There are a(10) = 12 such partitions of 10:
%e A320466 01: [10]
%e A320466 02: [1, 9]
%e A320466 03: [2, 8]
%e A320466 04: [3, 7]
%e A320466 05: [4, 6]
%e A320466 06: [5, 5]
%e A320466 07: [1, 4, 5]
%e A320466 08: [2, 4, 4]
%e A320466 09: [1, 2, 3, 4]
%e A320466 10: [1, 3, 3, 3]
%e A320466 11: [2, 2, 2, 2, 2]
%e A320466 12: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
%e A320466 There are a(11) = 13 such partitions of 11:
%e A320466 01: [11]
%e A320466 02: [1, 10]
%e A320466 03: [2, 9]
%e A320466 04: [3, 8]
%e A320466 05: [4, 7]
%e A320466 06: [5, 6]
%e A320466 07: [1, 4, 6]
%e A320466 08: [1, 5, 5]
%e A320466 09: [2, 4, 5]
%e A320466 10: [3, 4, 4]
%e A320466 11: [2, 3, 3, 3]
%e A320466 12: [1, 2, 2, 2, 2, 2]
%e A320466 13: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
%t A320466 Table[Length[Select[IntegerPartitions[n],GreaterEqual@@Differences[#]&]],{n,0,30}] (* _Gus Wiseman_, May 03 2019 *)
%o A320466 (Ruby)
%o A320466 def partition(n, min, max)
%o A320466   return [[]] if n == 0
%o A320466   [max, n].min.downto(min).flat_map{|i| partition(n - i, min, i).map{|rest| [i, *rest]}}
%o A320466 end
%o A320466 def f(n)
%o A320466   return 1 if n == 0
%o A320466   cnt = 0
%o A320466   partition(n, 1, n).each{|ary|
%o A320466     ary0 = (1..ary.size - 1).map{|i| ary[i - 1] - ary[i]}
%o A320466     cnt += 1 if ary0.sort == ary0
%o A320466   }
%o A320466   cnt
%o A320466 end
%o A320466 def A320466(n)
%o A320466   (0..n).map{|i| f(i)}
%o A320466 end
%o A320466 p A320466(50)
%Y A320466 Cf. A240026, A240027, A320470.
%Y A320466 Cf. A320382 (distinct parts, nonincreasing).
%Y A320466 Cf. A049988, A320509, A325325, A325350, A325353, A325361.
%K A320466 nonn
%O A320466 0,3
%A A320466 _Seiichi Manyama_, Oct 13 2018