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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A014980 Start with 5. Multiply two numbers closest to n/2 to get next number. 3
5, 6, 9, 20, 100, 2500, 1562500, 610351562500, 93132257461547851562500, 2168404344971008868014905601739883422851562500, 1175494350822287507968736537222245677818665556772087521508751706278417259454727172851562500 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

COMMENTS

A194079(n) gives number of digits of a(n).

FORMULA

a(0) = 5; a(k+1) = floor(a(k)/2) * ceil(a(k)/2).

a(n+1) = A002620(a(n)), a(0) = 5. [Reinhard Zumkeller, Oct 12 2011]

MATHEMATICA

a=5; a=Table[a=Ceiling[a/2]*Floor[a/2], {n, 0, 10}] [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Apr 13 2010]

PROG

(Haskell)

a014980 n = a014980_list !! n

a014980_list = iterate a002620 5

-- Reinhard Zumkeller, Oct 12 2011

CROSSREFS

Sequence in context: A117951 A124519 A154311 * A066901 A019125 A019205

Adjacent sequences:  A014977 A014978 A014979 * A014981 A014982 A014983

KEYWORD

nonn,nice,easy

AUTHOR

Colin Sandon (sandon(AT)together.net)

EXTENSIONS

More terms from James A. Sellers (sellersj(AT)math.psu.edu), Feb 05 2000

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 15 04:23 EST 2012. Contains 205694 sequences.