OFFSET
1,1
COMMENTS
The sequence is probably infinite.
It appears that every integer occurs as the difference round((a(n+1)-a(n))/100); all numbers 1..228 occur as these differences for a(n) < 1000000000. - Hartmut F. W. Hoft, May 18 2017
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
Consecutive primes 10993 and 11003 differ by 10 and are in consecutive centuries, so 10993 is in the sequence.
MATHEMATICA
a160500[n_] := Map[Last, Select[Map[{NextPrime[#, 1], NextPrime[#, -1]}&, Range[100, n, 100]], First[#]-Last[#]==10&]]
a160500[33500] (* data *) (* Hartmut F. W. Hoft, May 18 2017 *)
cpdcQ[{a_, b_}]:=b-a==10&&Floor[a/100]!=Floor[b/100]; Select[Partition[Prime[Range[ 4000]], 2, 1], cpdcQ][[;; , 1]] (* Harvey P. Dale, Sep 02 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ki Punches, May 15 2009
EXTENSIONS
Edited by Ray Chandler, May 22 2009
STATUS
approved