[go: up one dir, main page]

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!)
Revision History for A244239 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A244239 Number of partitions of n into 3 parts such that every i-th smallest part (counted with multiplicity) is different from i.
(history; published version)
#12 by Alois P. Heinz at Thu Apr 18 11:51:43 EDT 2024
STATUS

proposed

approved

#11 by Chai Wah Wu at Thu Apr 18 10:14:21 EDT 2024
STATUS

editing

proposed

#10 by Chai Wah Wu at Thu Apr 18 10:14:06 EDT 2024
LINKS

<a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (1,1,0,-1,-1,1).

FORMULA

From Chai Wah Wu, Apr 18 2024: (Start)

a(n) = a(n-1) + a(n-2) - a(n-4) - a(n-5) + a(n-6) for n > 15.

G.f.: x^9*(-x^6 + 2*x^4 + x^3 - 2*x - 1)/((x - 1)^3*(x + 1)*(x^2 + x + 1)). (End)

STATUS

approved

editing

#9 by Joerg Arndt at Tue May 01 02:46:54 EDT 2018
STATUS

proposed

approved

#8 by Jean-François Alcover at Tue May 01 02:31:50 EDT 2018
STATUS

editing

proposed

#7 by Jean-François Alcover at Tue May 01 02:31:46 EDT 2018
MATHEMATICA

b[n_, i_] := b[n, i] = If[n == 0, 1, If[i<1, 0, b[n, i-1] + If[i>n, 0, Function[p, Expand[x*(p-Coefficient[p, x, i-1]*x^(i-1))]][b[n-i, i]]]]];

a[n_] := Coefficient[b[n, n], x, 3];

Table[a[n], {n, 9, 80}] (* Jean-François Alcover, May 01 2018, after Alois P. Heinz *)

STATUS

approved

editing

#6 by Alois P. Heinz at Mon Jun 23 12:01:21 EDT 2014
STATUS

editing

approved

#5 by Alois P. Heinz at Mon Jun 23 10:29:52 EDT 2014
MAPLE

a:= proc(n) option remember; `if`(n<14, [1, 3, 4, 6, 7][n-8],

((-4*n+56)*a(n-5) +(3*n-16)*a(n-4) +(7*n-66)*a(n-3)

+(4*n-44)*a(n-2) +(28-3*n)*a(n-1)) / (7*n-78))

end:

seq(a(n), n=9..80);

#4 by Alois P. Heinz at Mon Jun 23 10:28:21 EDT 2014
LINKS

Alois P. Heinz, <a href="/A244239/b244239.txt">Table of n, a(n) for n = 9..1000</a>

#3 by Alois P. Heinz at Mon Jun 23 10:26:08 EDT 2014
NAME

allocated for Alois P. Heinz

Number of partitions of n into 3 parts such that every i-th smallest part (counted with multiplicity) is different from i.

DATA

1, 3, 4, 6, 7, 9, 11, 13, 15, 18, 20, 23, 26, 29, 32, 36, 39, 43, 47, 51, 55, 60, 64, 69, 74, 79, 84, 90, 95, 101, 107, 113, 119, 126, 132, 139, 146, 153, 160, 168, 175, 183, 191, 199, 207, 216, 224, 233, 242, 251, 260, 270, 279, 289, 299, 309, 319, 330, 340

OFFSET

9,2

CROSSREFS

Column k=3 of A238406.

KEYWORD

allocated

nonn

AUTHOR

Alois P. Heinz, Jun 23 2014

STATUS

approved

editing

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 August 29 06:09 EDT 2024. Contains 375510 sequences. (Running on oeis4.)