|
| |
|
|
A068084
|
|
Smallest triangular number which is a multiple (>1) of the n-th triangular number.
|
|
3
| |
|
|
3, 6, 36, 120, 45, 105, 1176, 2016, 630, 990, 528, 780, 3003, 210, 3240, 32640, 9180, 11628, 2850, 630, 3003, 26565, 16836, 20100, 44850, 52650, 17766, 20706, 10440, 12090, 461280, 61776, 11781, 3570, 25200, 43956, 221445, 30381, 5460, 189420
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
LINKS
| Zak Seidov, Table of n, a(n) for n = 1..1000
|
|
|
EXAMPLE
| The fifth triangular number is 15; the next triangular number that's divisible by 15 is 45, so a(5)=45.
|
|
|
MATHEMATICA
| a[n_] := For[k=n+1, True, k++, If[Mod[k(k+1), n(n+1)]==0, Return[k(k+1)/2]]]
|
|
|
CROSSREFS
| Sequence in context: A119184 A084260 A076983 * A003674 A120595 A048642
Adjacent sequences: A068081 A068082 A068083 * A068085 A068086 A068087
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Feb 18 2002
|
|
|
EXTENSIONS
| Edited by Dean Hickerson (dean.hickerson(AT)yahoo.com), Feb 20 2002
|
| |
|
|