OFFSET
1,2
COMMENTS
LINKS
T. D. Noe, Rows n = 1..100 of triangle, flattened
EXAMPLE
1;
2,3;
4,9,25;
6,8,10,14;
16,81,625,2401,14641;
...
MATHEMATICA
d = Table[Length[Divisors[n]], {n, 2000}]; t = {}; n = 0; ok = True; While[ok, n++; If[PrimeQ[n], AppendTo[t, Prime[Range[n]]^(n - 1)], c = Flatten[Position[d, n, 1, n]]; If[Length[c] >= n, AppendTo[t, c], ok = False]]]; Flatten[t] (* T. D. Noe, Jun 23 2013 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Amarnath Murthy, Aug 18 2002
EXTENSIONS
Corrected and extended by Sascha Kurz, Jan 28 2003
STATUS
approved