|
|
A214081
|
|
a(n) = floor( n^(1/3) )!.
|
|
5
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
0,9
|
|
LINKS
|
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
|
|
MATHEMATICA
|
Table[Floor[n^(1/3)]!, {n, 0, 100}] (* T. D. Noe, Dec 23 2012 *)
|
|
PROG
|
(DERIVE) PROG(y := [], n := 70, LOOP(IF(n = -1, RETURN y), y := ADJOIN(FLOOR(n^(1/3))!, y), n := n - 1))
(MAGMA) [Factorial(Floor(n^(1/3))): n in [0..80]]; // Vincenzo Librandi, Feb 13 2013
(PARI) a(n) = floor(n^(1/3))!; \\ Altug Alkan, Jan 11 2016
|
|
CROSSREFS
|
Cf. A055226, A055228, A214078, A214079, A214080, A214081, A214083.
Sequence in context: A111896 A105515 A105514 * A194338 A176170 A062153
Adjacent sequences: A214078 A214079 A214080 * A214082 A214083 A214084
|
|
KEYWORD
|
easy,nonn
|
|
AUTHOR
|
Mohammad K. Azarian, Dec 22 2012
|
|
STATUS
|
approved
|
|
|
|