OFFSET
0,2
COMMENTS
Another rearrangement of the natural numbers in which the product of next n numbers is an n-th power.
The first n-1 elements of the n-th group are the smallest n-1 numbers that haven't already appeared, say u1, u2, ..., u_(n-1) and let u_n be the unknown final element of the n-th group. Let u1*u2*u3*...*u_(n-1) = (p1^e1)(p2^e2)...(pr^er). Then u_n = product(i=1 to r) p_i^(ei + n*floor(ei/n) - n) ...unless this has already appeared in the sequence (probably this never happens). More simply, I conjecture that u_n = product(i=1 to r) p_i^(ei - n). - Sam Alexander, Dec 31 2003
EXAMPLE
Triangle begins:
1
2 8
3 4 18
5 6 7 9261000
9 10 11 12 329422500
...
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Amarnath Murthy, Oct 08 2002
EXTENSIONS
Corrected and extended by Sam Alexander, Dec 31 2003
Edited by Ray Chandler, May 09 2007
STATUS
approved