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!)
A320388 Number of partitions of n into distinct parts such that the successive differences of consecutive parts are decreasing. 4

%I #36 Jan 08 2021 15:23:22

%S 1,1,1,2,2,3,3,4,5,5,6,8,7,9,11,10,12,15,14,16,19,18,21,25,23,26,31,

%T 29,33,38,36,40,46,44,49,56,53,58,66,64,70,77,76,82,92,89,96,106,104,

%U 113,123,120,130,142,141,149,162,160,172,186,184,195,211,210,223,238

%N Number of partitions of n into distinct parts such that the successive differences of consecutive parts are decreasing.

%C Partitions are usually written with parts in descending order, but the conditions are easier to check "visually" if written in ascending order.

%C Partitions into distinct parts (p(1), p(2), ..., p(m)) such that p(k-1) - p(k-2) > p(k) - p(k-1) for all k >= 3.

%H Fausto A. C. Cariboni, <a href="/A320388/b320388.txt">Table of n, a(n) for n = 0..2000</a> (terms 0..100 from Seiichi Manyama)

%e There are a(17) = 15 such partitions of 17:

%e 01: [17]

%e 02: [1, 16]

%e 03: [2, 15]

%e 04: [3, 14]

%e 05: [4, 13]

%e 06: [5, 12]

%e 07: [6, 11]

%e 08: [7, 10]

%e 09: [1, 6, 10]

%e 10: [8, 9]

%e 11: [1, 7, 9]

%e 12: [2, 6, 9]

%e 13: [2, 7, 8]

%e 14: [3, 6, 8]

%e 15: [4, 6, 7]

%e There are a(18) = 14 such partitions of 18:

%e 01: [18]

%e 02: [1, 17]

%e 03: [2, 16]

%e 04: [3, 15]

%e 05: [4, 14]

%e 06: [5, 13]

%e 07: [6, 12]

%e 08: [7, 11]

%e 09: [8, 10]

%e 10: [1, 7, 10]

%e 11: [1, 8, 9]

%e 12: [2, 7, 9]

%e 13: [3, 7, 8]

%e 14: [1, 4, 6, 7]

%o (Ruby)

%o def partition(n, min, max)

%o return [[]] if n == 0

%o [max, n].min.downto(min).flat_map{|i| partition(n - i, min, i - 1).map{|rest| [i, *rest]}}

%o end

%o def f(n)

%o return 1 if n == 0

%o cnt = 0

%o partition(n, 1, n).each{|ary|

%o ary0 = (1..ary.size - 1).map{|i| ary[i - 1] - ary[i]}

%o cnt += 1 if ary0.sort == ary0 && ary0.uniq == ary0

%o }

%o cnt

%o end

%o def A320388(n)

%o (0..n).map{|i| f(i)}

%o end

%o p A320388(50)

%Y Cf. A007294, A179254, A179255, A179269, A320382, A320385, A320387.

%Y Cf. A081489.

%K nonn

%O 0,4

%A _Seiichi Manyama_, Oct 12 2018

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 April 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)