OFFSET
1,1
COMMENTS
The conductor of x*prime(n) + y*prime(n+1); that is, for all k >= a(n), there exist nonnegative integers x and y such that k = x*prime(n) + y*prime(n+1). - T. D. Noe, Sep 22 2004
REFERENCES
David Bressoud and Stan Wagon, A Course in Computational Number Theory, Key College Pub., 2000, p. 46.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
n=25: a(25) = (97-1)*(101-1) = 9600.
MATHEMATICA
f[x_] := Prime[x]-1; Table[f[w+1]*f[w], {w, 1, 128}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, May 22 2003
STATUS
approved