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”).

A003661
Number of bipartite Steinhaus graphs on n nodes.
(Formerly M0996)
1
1, 2, 4, 6, 9, 10, 13, 15, 19, 19, 21, 23, 27, 28, 31, 34, 39, 38, 39, 40, 43, 44, 47, 50, 55, 55, 57, 59, 63, 65, 69, 73, 79, 77, 77, 77, 79, 79, 81, 83, 87, 87, 89, 91, 95, 97, 101, 105, 111, 110, 111, 112, 115, 116, 119, 122, 127, 128, 131, 134, 139, 142, 147, 152, 159
OFFSET
1,2
REFERENCES
W. M. Dymacek, M. Koerlin and T. Whaley, A survey of Steinhaus graphs, Proc. 8th Quadrennial International Conf. on Graph Theory, Combinatorics, Algorithms and Application, Kalamazoo, Mich. 1996, pages 313-323, Vol. I.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
W. Dymacek, T. Whaley, Generating strings for bipartite Steinhaus graphs, Discrete Math. 141 (1995), pages 97-107.
Hsien-Kuei Hwang, S. Janson, T.-H. Tsai, Exact and Asymptotic Solutions of a Divide-and-Conquer Recurrence Dividing at Half: Theory and Applications, ACM Transactions on Algorithms, 13:4 (2017), #47; DOI: 10.1145/3127585.
FORMULA
a(n) <= (5n-7)/2 (n > 2) with equality for n=2^k + 1.
a(2k+1)=2a(k+1)+1; a(2k)=a(k)+a(k+1) for k >=2.
MAPLE
a := proc(n) if n=1 then 1 elif n=2 then 2 elif n=3 then 4 elif n mod 2 = 1 then 2*a((n+1)/2) + 1 else a(n/2)+a(n/2+1) fi end: seq(a(n), n=1..80);
CROSSREFS
Sequence in context: A050110 A184416 A187225 * A065387 A219787 A331006
KEYWORD
nonn
EXTENSIONS
More terms from Emeric Deutsch, Feb 26 2004
STATUS
approved