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!)
A007905 Conflicts during insertions into exchange trees on n nodes. 0
0, 0, 1, 4, 30, 216, 1440, 11040, 112560, 1229760, 14333760, 179988480, 2259290880, 30656102400, 446269824000, 6949355212800, 123855443712000, 2320686111744000, 45616912653312000, 939726185029632000, 20166054423330816000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Markus E. Nebel, Digital Search Trees with Keys of Variable Length, R.A.I.R.O. Theoretical Informatics and Applications 30 (6), 1996, 507 - 520 (see (3) on p. 6).
FORMULA
See PARI program.
PROG
(PARI) b(n) = if (n == 0, 0, if (n == 1, 0, b(n\2) + b((n-1)\2) + (n-1)/n));
lista(nn) = {for(n=0, nn, print1(n!*b(n), ", "); ); } \\ Michel Marcus, Aug 13 2013
CROSSREFS
Sequence in context: A246151 A094567 A134093 * A084976 A000313 A082144
KEYWORD
nonn
AUTHOR
Markus Nebel [ nebel(AT)sads.informatik.uni-frankfurt.de ]
EXTENSIONS
More terms from Michel Marcus, Aug 15 2013
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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)