login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A209204
Values of the difference d for 5 primes in geometric-arithmetic progression with the minimal sequence {5*5^j + j*d}, j = 0 to 4.
10
84, 114, 138, 168, 258, 324, 348, 462, 552, 588, 684, 714, 744, 798, 882, 894, 972, 1176, 1602, 1734, 2196, 2256, 2442, 2478, 2568, 2646, 2658, 2688, 3036, 3162, 3444, 3906, 4524, 5154, 5406, 5544, 5766, 5796, 6018, 6456, 6594, 6636, 6936, 7272, 7938, 8736
OFFSET
1,1
COMMENTS
A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be multiple of 3# = 6 and coprime to 5.
Subsequence of A209203. - Zak Seidov, Jul 06 2013
LINKS
Sameen Ahmed Khan, Primes in Geometric-Arithmetic Progression, arXiv:1203.2083v1 [math.NT], (Mar 09 2012).
EXAMPLE
d = 114 then {5*5^j + j*d}, j = 0 to 4, is {5, 139, 353, 967, 3581}, which is 5 primes in geometric-arithmetic progression.
MATHEMATICA
p = 5; gapset5d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d}] == {True, True, True, True, True}, AppendTo[gapset5d, d]], {d, 2, 10000, 2}]; gapset5d
KEYWORD
nonn
AUTHOR
Sameen Ahmed Khan, Mar 06 2012
STATUS
approved