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!)
A247090 Eric Rowland's generalization of A132199 as a rectangular array A read by upward antidiagonals. 1
1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 3, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 2, 1, 1, 5, 3, 1, 1, 1, 1, 1, 1, 5, 3, 1, 1, 1, 1, 2, 1, 1, 5, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture [Rowland] (paraphrased): Let A be the above array with entry A(n,k) in row n and column k. For each n, there exists an index N(n) >= 1 such that A(n,j) is either 1 or prime for all j > N(n).
LINKS
Eric S. Rowland, A natural prime-generating recurrence, J. Integer Seq., 11 (2008), Article 08.2.8.
EXAMPLE
Array A begins:
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
2, 3, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, ...
1, 3, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, ...
2, 1, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, ...
1, 1, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, ...
2, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 13, ...
1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 13, ...
2, 3, 1, 1, 1, 1, 1, 1, 1, 11, 3, 1, ...
1, 3, 1, 1, 1, 1, 1, 1, 1, 11, 3, 1, ...
2, 1, 1, 1, 1, 1, 1, 1, 1, 11, 3, 1, ...
...
MATHEMATICA
(* Array A: *)
max := 13; b[n_, 1] := n; b[n_, k_] := b[n, k] = b[n, k - 1] + GCD[k, b[n, k - 1]]; Grid[Transpose[Differences[Transpose[Table[b[n, k], {n, max}, {k, max}]]]]]
(* Array antidiagonals flattened: *)
max := 13; b[n_, 1] := n; b[n_, k_] := b[n, k] = b[n, k - 1] + GCD[k, b[n, k - 1]]; Flatten[Table[Transpose[Differences[Transpose[Table[b[n, k], {n, max}, {k, max}]]]][[n - k + 1]][[k]], {n, max - 1}, {k, n}]]
CROSSREFS
Sequence in context: A050432 A343747 A334925 * A030346 A030336 A321650
KEYWORD
nonn,tabl
AUTHOR
L. Edson Jeffery, Nov 18 2014
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 26 12:24 EDT 2024. Contains 371997 sequences. (Running on oeis4.)