[go: up one dir, main page]

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

A173083
Semiprimes q such that q^2+3 and q^2-3 are also semiprimes.
4
6, 226, 262, 302, 314, 334, 346, 382, 466, 482, 514, 538, 562, 734, 778, 842, 866, 886, 898, 926, 974, 1006, 1046, 1282, 1306, 1318, 1322, 1438, 1466, 1478, 1574, 1622, 1774, 1822, 1838, 1858, 1894, 1994, 2302, 2342, 2446, 2518, 2578, 2582, 2602, 2638
OFFSET
1,1
FORMULA
{A001358(j): A074985(j)-3 in A001358 and A074985(j)+3 in A001358}. [R. J. Mathar, Mar 11 2010]
EXAMPLE
6^2-3=33 = 3*11 and 6^2+3=39 = 3*13 are semiprimes derived from q=6, so q=6 is in the sequence.
MATHEMATICA
f[n_]:=Last/@FactorInteger[n]=={1, 1}||Last/@FactorInteger[n]=={2}; lst={}; Do[If[f[n], a=n^2-3; b=n^2+3; If[f[a]&&f[b], AppendTo[lst, n]]], {n, 8!}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition rephrased - R. J. Mathar, Mar 11 2010
STATUS
approved