login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A079542 Triangular array: T(n,1) = T(n,n) = n and T(n,k) = lcm(T(n-1,k-1), T(n-1,k)) for 1 < k < n. 1
1, 2, 2, 3, 2, 3, 4, 6, 6, 4, 5, 12, 6, 12, 5, 6, 60, 12, 12, 60, 6, 7, 60, 60, 12, 60, 60, 7, 8, 420, 60, 60, 60, 60, 420, 8, 9, 840, 420, 60, 60, 60, 420, 840, 9, 10, 2520, 840, 420, 60, 60, 420, 840, 2520, 10, 11, 2520, 2520, 840, 420, 60, 420, 840, 2520, 2520, 11, 12 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
T(2*n-1,n) = A058312(n-1) for n <= 13.
LINKS
EXAMPLE
Triangle begins:
1
2 2
3 2 3
4 6 6 4
5 12 6 12 5
6 60 12 12 60 6
7 60 60 12 60 60 7
PROG
(PARI) T(n, k) = if ((k==1) || (k==n), n, lcm(T(n-1, k-1), T(n-1, k)));
tabl(nn) = for (n=1, nn, for (k=1, n, print1(T(n, k), ", ")); print); \\ Michel Marcus, Apr 25 2018
CROSSREFS
Cf. A080046.
T(n, 2) = A003418(n-1) for n > 2.
Sequence in context: A287958 A308630 A059896 * A220370 A291048 A022467
KEYWORD
nonn,tabl
AUTHOR
Reinhard Zumkeller, Jan 22 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)