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!)
A212459 a(n) = ceiling(2n*log(2n)). 8
2, 6, 11, 17, 24, 30, 37, 45, 53, 60, 69, 77, 85, 94, 103, 111, 120, 130, 139, 148, 157, 167, 177, 186, 196, 206, 216, 226, 236, 246, 256, 267, 277, 287, 298, 308, 319, 330, 340, 351, 362, 373, 384, 395, 405, 417, 428 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A050502(2*n). - Michel Marcus, Jan 11 2016
MATHEMATICA
Table[Ceiling[2*n*Log[2*n]], {n, 80}] (* Vincenzo Librandi, Feb 13 2013 *)
PROG
(Derive) PROG(y := [], x := 100, LOOP(IF(x = 0, RETURN y), y := ADJOIN(CEILING(2·x·LOG(2·x)), y), x := x - 1))
(Magma) [Ceiling(2*n*Log(2*n)): n in [1..80]]; // Vincenzo Librandi, Feb 13 2013
(PARI) a(n) = ceil(2*n*log(2*n)); \\ Michel Marcus, Jan 11 2016
CROSSREFS
Sequence in context: A215918 A078476 A217687 * A099056 A347315 A046691
KEYWORD
easy,nonn
AUTHOR
Mohammad K. Azarian, May 31 2012
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 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)