login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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