The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A261842 Number of compositions of n into distinct parts where each part i is marked with a word of length i over a quaternary alphabet whose letters appear in alphabetical order. 2
1, 4, 10, 100, 195, 736, 6032, 11712, 35285, 100260, 871386, 1492820, 4438573, 10525720, 29825140, 241360728, 405645867, 1086289116, 2489722574, 6158961820, 14573822743, 123303661384, 192326074572, 504783599080, 1073240557055, 2539006453740, 5337585654950 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Also matrices with four rows of nonnegative integers with distinct positive column sums and total element sum n.
LINKS
MAPLE
b:= proc(n, i, p) option remember;
`if`(i*(i+1)/2<n, 0, `if`(n=0, p!, b(n, i-1, p)+
`if`(i>n, 0, b(n-i, i-1, p+1)*binomial(i+3, 3))))
end:
a:= n-> b(n$2, 0):
seq(a(n), n=0..40);
CROSSREFS
Column k=4 of A261835.
Sequence in context: A266839 A203179 A125855 * A153743 A370987 A245304
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 03 2015
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 May 25 14:05 EDT 2024. Contains 372788 sequences. (Running on oeis4.)