OFFSET
1,3
COMMENTS
On the first day, each gossip has his own tidbit. On each successive day, disjoint pairs of gossips may share tidbits (over the phone). After a(n) days, all gossips have all tidbits.
REFERENCES
D. Shasha, Gossiping Defenders, The Puzzling Adventures of Dr. Ecco, pp. 62-4;156 W. H. Freeman NY 1988.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
C. Kenneth Fan, Bjorn Poonen and George Poonen, How to spread rumors fast, Mathematics Magazine 70 (Feb, 1997), pp. 40-42.
I. Peterson, Spreading Rumors, MathLand, March 17, 1997.
FORMULA
a(1) = 0; for n >= 2, a(n) = floor(log_2(n-1)) + ((n-2) mod 2) + 1.
G.f.: -1 + (1/(1-z))*(1/(1+z) + Sum_{k>=0} z^(2^k)). - Ralf Stephan, Apr 06 2003
MATHEMATICA
Join[{0}, Table[Floor[Log[2, n - 1]] + Mod[n - 2, 2] + 1, {n, 2, 100}]] (* T. D. Noe, Mar 16 2012 *)
PROG
(Haskell)
a007456 1 = 0
a007456 n = a000523 (n - 1) + mod n 2 + 1
-- Reinhard Zumkeller, Apr 03 2014
CROSSREFS
KEYWORD
nonn,nice,easy
AUTHOR
Alex Graesser (AlexG(AT)sni.co.za)
EXTENSIONS
More terms from David W. Wilson
Formulae corrected by Johannes W. Meijer, May 15 2009
STATUS
approved