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
KEYWORD
nonn
AUTHOR
Markus Nebel [ nebel(AT)sads.informatik.uni-frankfurt.de ]
EXTENSIONS
More terms from Michel Marcus, Aug 15 2013
STATUS
approved