A192580 Monotonic ordering of set S generated by these rules: if x and y are in S and xy+1 is a prime, then xy+1 is in S, and 2 is in S.
2, 5, 11, 23, 47
Offset: 1
Examples
2 is in the sequence by decree. The generated numbers are 5=2*2+1, 11=2*5+1, 23=2*11+1, 47=2*23+1.
Links
- Wikipedia, Cunningham chain
Programs
-
Mathematica
start = {2}; primes = Table[Prime[n], {n, 1, 10000}]; f[x_, y_] := If[MemberQ[primes, x*y + 1], x*y + 1] b[x_] := Block[{w = x}, Select[Union[Flatten[AppendTo[w, Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # < 50000 &]]; t = FixedPoint[b, start] (* A192580 *)
Comments