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!)
A144905 a(0) = 1; thereafter a(n) = A105749(n)/n. 1
1, 2, 7, 74, 1596, 58344, 3240840, 254535840, 26862378480, 3667537480320, 629083000385280, 132437508454137600, 33575888768939193600, 10090248381797704243200, 3546915020658948703564800, 1441883923593020355819571200, 671220876625092844683849216000, 354750674999711346878469083136000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
B := proc(n, k, M) local i; option remember;
if n = k then 1;
elif k < n then 0;
elif n < 1 then 0;
else
add( binomial(k-1, i)*B(n-1, k-1-i, M), i=0..M-1 );
end if;
end proc;
p:=proc(n, M) add(B(n, k, M), k=0..M*n); end;
l:=proc(n, M) n!*p(n, M); end;
[seq(l(n, 2)/n, n=1..30)];
CROSSREFS
Sequence in context: A167526 A064646 A366407 * A349500 A266880 A320329
KEYWORD
nonn
AUTHOR
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 April 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)