login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A151998
Directed genus of the binary de Bruijn graph D_n.
0
0, 0, 0, 1, 2, 7, 15, 35, 75, 163, 337, 709, 1458, 3001, 6135, 12529, 25468, 51739, 104829, 212205, 428916, 866215, 1747527, 3523213, 7097895, 14291683, 28760643, 57852469, 116321445, 233798623, 469761015, 943591237, 1894836585, 3804113881, 7635493643
OFFSET
0,5
LINKS
A. W. Hales and N. Hartsfield, The directed genus of the de Bruijn graph, Discrete Math., 309 (2009), 5259-5263.
FORMULA
See Maple code.
MAPLE
with(numtheory);
f:=proc(n) local t1, t2, t3, i;
t1:=divisors(n+2); t2:=convert(t1, list);
t3:=add( phi(t2[i])*2^((n+2)/t2[i]), i =1..nops(t2));
2^(n-1) + 1 - t3/(2*(n+2));
end;
PROG
(PARI) a(n) = 2^(n-1) + 1 - sumdiv(n+2, d, 2^((n+2)/d)*eulerphi(d))/(2*(n+2)); \\ Michel Marcus, Mar 02 2019
CROSSREFS
Sequence in context: A209633 A216633 A295145 * A308631 A052130 A366130
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 15 2009
STATUS
approved