OFFSET
1,1
COMMENTS
Bombieri's Napkin Problem: Bombieri said that "the equation C(x,n)+C(y,n)=C(z,n) has no trivial solutions for n >= 3" (the joke being that he said "trivial" rather than "nontrivial"!).
REFERENCES
J. Leech, Some solutions of Diophantine equations, Proc. Camb. Phil. Soc., 53 (1957), 778-780.
Van der Poorten, Notes on Fermat's Last Theorem, Wiley, p. 122.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..463 (n < 10^6)
FORMULA
a(n) = A002311(n) + 2. - Reinhard Zumkeller, May 02 2014
EXAMPLE
C(10,3) + C(16,3) = C(17,3) = 680, so 17 is a term.
MATHEMATICA
f[n_]:=Reduce[1 < x <= y < n && n(n-1)(n-2) == x(x-1)(x-2) + y(y-1)(y-2), {x, y}, Integers]; Select[Range[2260], (f[#] =!= False)&] (* Jean-François Alcover, Mar 30 2011 *)
PROG
(Haskell)
a010330 = (+ 2) . a002311 -- Reinhard Zumkeller, May 02 2014
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
More terms from David W. Wilson
STATUS
approved