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!)
A227426 Number of partitions into distinct parts without three consecutive parts. 2

%I #20 May 24 2018 02:41:34

%S 1,1,1,2,2,3,3,5,6,7,9,11,13,16,20,23,28,33,39,46,55,63,75,87,101,117,

%T 136,156,180,207,238,272,311,355,404,460,522,592,670,758,855,965,1087,

%U 1223,1373,1543,1728,1936,2166,2421,2702,3016,3359,3741,4162,4626,5136,5702,6320,7002,7753,8576,9479,10473

%N Number of partitions into distinct parts without three consecutive parts.

%C Number of partitions into distinct parts with maximal perimeter.

%C For n>=1, diagonal of A227344.

%H Joerg Arndt and Alois P. Heinz, <a href="/A227426/b227426.txt">Table of n, a(n) for n = 0..10000</a>

%F a(n) = c * exp(r*sqrt(n)) / n^(3/4), where r = 1.75931899568... and c = 0.2080626386... - _Vaclav Kotesovec_, May 24 2018

%p b:= proc(n, i, t) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p b(n, i-1, 0)+`if`(i>n or t=2, 0, b(n-i, i-1, t+1))))

%p end:

%p a:= n-> b(n, n, 0):

%p seq(a(n), n=0..80); # _Alois P. Heinz_, Jul 15 2013

%t b[n_, i_, t_] := b[n, i, t] = If[n==0, 1, If[i<1, 0, b[n, i-1, 0] + If[i>n || t==2, 0, b[n-i, i-1, t+1]]]]; a[n_] := b[n, n, 0]; Table[a[n], {n, 0, 80}] (* _Jean-François Alcover_, Jul 02 2015, after _Alois P. Heinz_ *)

%o (Haskell)

%o a227426 = p 1 1 where

%o p _ _ 0 = 1

%o p k i m = if m < k then 0 else p (k + i) (3 - i) (m - k) + p (k + 1) 1 m

%o -- _Reinhard Zumkeller_, Jul 14 2013

%Y Cf. A000009.

%K nonn

%O 0,4

%A _Joerg Arndt_, Jul 11 2013

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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)