login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A192612 Monotonic ordering of set S generated by these rules: if x and y are in S and x^2+2y^2 is a prime, then x^2+2y^2 is in S, and 1 and 2 are in S. 3
1, 2, 3, 11, 17, 19, 139, 251, 307, 379, 587 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See the discussions at A192476 and A192580. The start-set for A192612 is {1,2}. For results using start-sets {1}, and {1,2,4}, see A192598 and A192613.
LINKS
MATHEMATICA
start = {1, 2}; primes = Table[Prime[n], {n, 1, 20000}];
f[x_, y_] := If[MemberQ[primes, x^2 + 2 y^2], x^2 + 2 y^2]
b[x_] :=
Block[{w = x},
Select[Union[
Flatten[AppendTo[w,
Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1,
Length[w]}]]]], # < 30000 &]];
t = FixedPoint[b, start] (* A192612 *)
CROSSREFS
Sequence in context: A051098 A215811 A051076 * A014092 A100962 A045337
KEYWORD
nonn,full,fini
AUTHOR
Clark Kimberling, Jul 05 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 04:38 EDT 2024. Contains 371696 sequences. (Running on oeis4.)