A234631 Timestamps Hmmss where H,mm,ss are three consecutive primes, 0 < H < 24.
20305, 30507, 50711, 71113, 111317, 131719, 171923, 192329, 232931
Offset: 1
Examples
The terms correspond to the following timestamps: 02:03:05 03:05:07 05:07:11 07:11:13 11:13:17 13:17:19 17:19:23 19:23:29 23:29:31
Links
- A. Kulsha, Re: The probability of occurrence of 3 consecutive primes, primenumbers group, Dec 28 2013.
- A. Kulsha, Re: The probability of occurrence of 3 consecutive primes [Cached copy]
Programs
-
PARI
forprime(h=1,24,printf("%d%02d%02d, ",h,m=nextprime(h+1),nextprime(m+1)))