OFFSET
1,2
LINKS
Martin Fuller, Table of n, a(n) for n = 1..78
FORMULA
product{k=1,..,n} a(n,k) | product{k=1,..,n+1} a(n+1,k). a(n,k+1)=a(n,k)+1 for k=1,..,n-1. a(n,1)>a(n-1,n-1). - R. J. Mathar, Jun 23 2006
EXAMPLE
Triangle begins:
1
2 3
4 5 6
7 8 9 10
12 13 14 15 16
47 48 49 50 51 52
Product of the terms of the 4th row = 7*8*9*10 = 5040. Product of the terms of the 5th row = 12*13*14*15*16 = 524160 = 104*5040.
MAPLE
A094270 := proc(nmax) local a, k, strt, aproo, apro, i, j, s; a := array(1..nmax, 1..nmax); a[1, 1] := 1; print(a[1, 1]); k := 2; while k < nmax do strt := a[k-1, k-1]+1; aproo := product(a[k-1, i], i=1..k-1); while true do apro := product(strt+j-1, j=1..k); if ( apro mod aproo ) =0 then for s from 1 to k do a[k, s] := strt+s-1; print(a[k, s]); od; break; fi; strt := strt+1; od; k := k+1; od; RETURN(a); end: A094270(10) : # R. J. Mathar, Jun 23 2006
CROSSREFS
KEYWORD
tabl,nonn
AUTHOR
Amarnath Murthy, Apr 27 2004
EXTENSIONS
More terms from R. J. Mathar, Jun 23 2006
Further terms from Martin Fuller, Jun 13 2007
Edited by N. J. A. Sloane, Jun 13 2007
STATUS
approved