OFFSET
1,1
COMMENTS
A subsequence of the mean of three consecutive numbers divisible by three consecutive primes (A-number?).
EXAMPLE
a(7) = 170. prime(7) = 17, prime(7-1) = 13, prime(7+1)=19 and 17 | 170, 19 | 171, 13 | 169 and 170 is the smallest such number.
MATHEMATICA
(* First do <<NumberTheory`NumberTheoryFunctions` *) a[1]=2; a[n_] := ChineseRemainder[{1, 0, Prime[n+1]-1}, Prime/@Range[n-1, n+1]]
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Dec 23 2002
EXTENSIONS
More terms from Jim Nastos, Feb 19 2003 and Dean Hickerson, Feb 23 2003
STATUS
approved