OFFSET
1,1
COMMENTS
The two factors 10 and 1 of this linear combination could be replaced by any other pair of integers.
FORMULA
a(n) = 10*prime(2n-2)+prime(2n-1), n>1.
MAPLE
A008578 := proc(n) if n = 1 then 1; else ithprime(n-1) ; end if; end proc:
MATHEMATICA
Join[{12}, 10#[[1]]+#[[2]]&/@Partition[Prime[Range[2, 80]], 2]] (* Harvey P. Dale, Aug 11 2017 *)
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Paul Curtz, Sep 15 2008
STATUS
approved