OFFSET
1,1
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..5050
EXAMPLE
Triangle begins:
2
3 5
7 13 19
17 29 37 41
11 31 61 71 101
...
MAPLE
A077321 := proc(nmax) local n, a, i, p; a := []; n :=1; while nops(a) < nmax do for i from 1 to n do p := 2; while ( p in a ) or (p-1) mod n <> 0 do p := nextprime(p); od; a := [op(a), p]; od; n := n+1; od; RETURN(a); end: A077321(100); # R. J. Mathar, Feb 03 2007
MATHEMATICA
A077321[nmax_] := Module[{n = 1, a = {}, i, p}, While[ Length[a] < nmax, For[i = 1, i <= n, i++, p = 2; While[ MemberQ[a, p] || Mod[p - 1, n] != 0, p = NextPrime[p]]; a = Append[a, p]]; n = n + 1]; Return[a]];
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Amarnath Murthy, Nov 04 2002, Nov 30 2004
EXTENSIONS
More terms from Ray Chandler, Dec 10 2004
Edited by N. J. A. Sloane, Sep 14 2008 at the suggestion of R. J. Mathar
STATUS
approved