OFFSET
1,1
COMMENTS
The corresponding values of n are listed in A125085.
Subset of A045533. [R. J. Mathar, Jan 03 2009]
EXAMPLE
23 is a term because 2 and 3 are adjacent primes and 23 is divisible by 1 (the position of 2 in the sequence of primes).
127131 is a term because 127 and 131 are adjacent primes and 127131 is divisible by 31 (the position of 127 in the sequence of primes).
MAPLE
MATHEMATICA
p = q = 2; c = 0; lst = {}; Do[c++; q = NextPrime@q; r = FromDigits@ Flatten[{IntegerDigits@ p, IntegerDigits@ q}]; If[Mod[r, c] == 0, AppendTo[lst, r]; Print[{c, r}]]; c++; q = NextPrime@ q; p = q, {n, 174254000}]; lst (* Robert G. Wilson v, Jan 23 2009 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Gil Broussard, Dec 24 2008
EXTENSIONS
3 more terms from R. J. Mathar, Jan 03 2009
a(9)-a(14) from Robert G. Wilson v, Jan 23 2009
a(15) from Donovan Johnson, Aug 08 2010
STATUS
approved