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

 


A214077
a(n) = floor(e^(n/3)).
2
1, 1, 2, 3, 5, 7, 10, 14, 20, 28, 39, 54, 76, 106, 148, 207, 289, 403, 563, 785, 1096, 1530, 2135, 2980, 4160, 5806, 8103, 11308, 15782, 22026, 30740, 42901, 59874, 83561, 116618, 162754, 227142, 317003, 442413, 617437
OFFSET
1,3
LINKS
MAPLE
A214077:=n->floor(exp(n/3)): seq(A214077(n), n=1..60); # Wesley Ivan Hurt, Jan 11 2016
MATHEMATICA
Floor[E^(Range[50]/3)] (* Vincenzo Librandi, Feb 13 2013 *)
PROG
(Derive) PROG(y := [], n := 60, LOOP(IF(n = 0, RETURN y), y := ADJOIN(FLOOR(ê^(n/3)), y), n := n - 1))
(Magma) [Floor(Exp(n)^(1/3)): n in [1..50]]; // Vincenzo Librandi, Feb 13 2013
(PARI) a(n) = floor(exp(n/3)); \\ Michel Marcus, Jan 11 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Mohammad K. Azarian, Jul 02 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 13:22 EDT 2024. Contains 376072 sequences. (Running on oeis4.)