OFFSET
3,1
COMMENTS
It appears that only rows 3, 4, 6, 8, 12, 24 have the property that all their members are primes. See the example. See also the comment at A018253.
LINKS
T. D. Noe, Rows n = 3..1000, flattened
EXAMPLE
Written as an irregular triangle:
2,
3,
4,
5,
6,
3, 7,
2, 8,
4, 9,
10,
5, 11,
12,
6, 13,
2, 4, 14,
3, 7, 15,
16,
5, 8, 17,
18,
3, 9, 19,
2, 6, 20,
10, 21,
22,
5, 7, 11, 23
MATHEMATICA
Flatten[Table[d = Divisors[n]; Select[Rest[d-1], Mod[n, #] > 0 &], {n, 3 , 100}]] (* T. D. Noe, Sep 23 2011 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Sep 19 2011
STATUS
approved