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”).

A336584
Numbers k with Goldbach partitions (p,q) and (r,s) such that k | (p*q -1) and k | (r*s +1).
3
3770, 4082, 15530, 28730, 38450, 47170, 52490, 59930, 64090, 67730, 79570, 91130, 95290, 95602, 98930, 110890, 111938, 117130, 153842, 168370, 170930, 199810, 204914, 226810, 229970, 236770, 238570, 249290, 250354, 263330, 266330, 268970, 272290, 359210, 359482, 361930
OFFSET
1,1
COMMENTS
k == +/- 2 (mod 12) == {2,10} (mod 24).
FORMULA
Intersection of A336582 & A336583.
EXAMPLE
3770 is in the sequence since it has a Goldbach partitions, (307,3463) such that 3770 | 307*3463 -1 = 1063140 = 282*3770 and 3770 | (1741*2029 +1) = 3532490 = 937*3770;
4082 is in the sequence since it has a Goldbach partitions, (499,3581) such that 4082 | 499*3583 -1 = 1787916 = 438*4082 and 4082 | (313*3769 +1) = 1179698 = 289*4082; etc.
MATHEMATICA
fQ[n_] := Block[{ flg1 = flg2 = 0, m, p = 3, q}, While[ 2p +1 < n, q = n - p; If[ PrimeQ@q, m = Mod[p*q, n]; If[m == 1, flg1 = 1]; If[m + 1 == n, flg2 = 1]; If[ flg1 == flg2 == 1, Goto[fini]]]; p = NextPrime@p]; Label[fini]; 2p +1 < n]; k = 2; lst = {}; While[k < 400001, If[ fQ@k, AppendTo[lst, k]]; k += 2]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved