OFFSET
1,1
COMMENTS
For any n, either a(n+1)-a(n)=2 or a(n+1)-a(n)=3.
REFERENCES
M. Griffiths, The Backbone of Pascal's Triangle, United Kingdom Mathematics Trust, 2008, pp. 68-72.
LINKS
Martin Griffiths, How many children?, Math. Gaz., 90 (2006), 146-149.
Martin Griffiths and Alexander Bramham, Expectations of Family Sizes Subject to Minimum Numbers of Each Gender, Journal of Integer Sequences, Vol. 16 (2013), #13.1.1.
FORMULA
a(n) is the nearest integer to 2*n*(1+ binomial(2*n,n)/(2^(2*n))).
MATHEMATICA
a[n_] := Round[2 n (1 + Binomial[2 n, n]/(2^(2 n)))]; Array[a, 65] (* Robert G. Wilson v, Apr 05 2009 *)
PROG
(PARI) a(n) = round(2*n*(1+ binomial(2*n, n)/(2^(2*n)))) \\ Felix Fröhlich, Jan 23 2019
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Martin Griffiths, Apr 04 2009
EXTENSIONS
More terms from Robert G. Wilson v, Apr 05 2009
STATUS
approved