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!)
A370358 Number of partitions of [3n] into n sets of size 3 having at least one set {3j-2,3j-1,3j} (1<=j<=n). 4
0, 1, 1, 28, 1063, 74296, 8182855, 1305232804, 284438292607, 81167321350432, 29367491879327959, 13135455977606994340, 7116140280642196449151, 4591529352468711908776288, 3479040085783649820897765223, 3058744793640846605215609362436 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{j=0..n-1} (-1)^(n-j+1) * binomial(n,j) * A025035(j).
a(n) = A025035(n) - A370357(n).
a(n) = Sum_{k=1..n} A370347(n,k).
a(n) mod 2 = A059841(n) for n>=2.
a(n) mod 9 = A057427(n).
EXAMPLE
a(1) = 1: 123.
a(2) = 1: 123|456.
a(3) = 28: 123|456|789, 123|457|689, 123|458|679, 123|459|678, 123|467|589, 123|468|579, 123|469|578, 123|478|569, 123|479|568, 123|489|567, 124|356|789, 125|346|789, 126|345|789, 127|389|456, 128|379|456, 129|378|456, 134|256|789, 135|246|789, 136|245|789, 137|289|456, 138|279|456, 139|278|456, 145|236|789, 146|235|789, 156|234|789, 178|239|456, 179|238|456, 189|237|456.
MAPLE
b:= proc(n) option remember; `if`(n<3, [1, 0, 9][n+1],
9*(n*(n-1)/2*b(n-1)+(n-1)^2*b(n-2)+(n-1)*(n-2)/2*b(n-3)))
end:
a:= n-> (3*n)!/(n!*(3!)^n)-b(n):
seq(a(n), n=0..20);
CROSSREFS
Column k=3 of A370363.
Sequence in context: A218480 A162006 A365029 * A025753 A160312 A132503
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 16 2024
STATUS
approved

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 12 17:30 EDT 2024. Contains 375113 sequences. (Running on oeis4.)