OFFSET
1,3
COMMENTS
From Robert Israel, May 22 2015: (Start)
If n is odd, all elements in row n are even.
By Dirichlet's theorem, every positive integer occurs infinitely often in the sequence. (End)
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..5050
EXAMPLE
1
1 2
2 4 6
1 3 4 7
2 6 8 12 14
1 2 3 5 6 7
4 6 10 16 18 28 30
MAPLE
F:= proc(n) local res, count, k;
res:= NULL:
count:= 0:
for k from 1 while count < n do
if isprime(n*k+1) then
res:= res, k;
count:= count+1
fi
od;
res
end proc:
seq(F(n), n=1..20); # Robert Israel, May 22 2015
MATHEMATICA
a = {}; Do[k = 0; ar = {}; While[Length[ar] < n, k++; If[PrimeQ[k n + 1], AppendTo[ar, k]]]; a = Join[a, ar], {n, 13}]; a (* Ivan Neretin, May 22 2015 *)
PROG
(PARI) tabl(nn) = {for (n = 1, nn, j = 0; for (k = 1, n, j++; while (!isprime(n*j+1), j++); print1(j, ", "); ); print(); ); } \\ Michel Marcus, May 23 2015
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Amarnath Murthy, Sep 09 2003
EXTENSIONS
More terms from Sam Alexander, Feb 27 2004
STATUS
approved