login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A072489 a(1) = 1, a(n) = a(n-1) times smallest divisor of n >= n^(1/2). 2
1, 2, 6, 12, 60, 180, 1260, 5040, 15120, 75600, 831600, 3326400, 43243200, 302702400, 1513512000, 6054048000, 102918816000, 617512896000, 11732745024000, 58663725120000 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

PROG

Contribution from Michael B. Porter (michael_b_porter(AT)yahoo.com), Jan 30 2010: (Start)

(PARI) A033676(n) = {local(d); if(n<2, 1, d=divisors(n); d[(length(d)+1)\2])}

A072489(n) = if(n<2, 1, n*A072489(n-1)/A033676(n))

a=1; print(a); for(n=2, 20, a=n*a/A033676(n); print(a)) (End)

CROSSREFS

Cf. A072488.

Sequence in context: A101657 A104371 A104350 * A072487 A189394 A182862

Adjacent sequences:  A072486 A072487 A072488 * A072490 A072491 A072492

KEYWORD

nonn

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jul 13 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 04:58 EST 2012. Contains 205985 sequences.