OFFSET
1,2
FORMULA
a(n) = floor((2*n^2)/e).
MATHEMATICA
Table[Floor[(2 n^2)/ E ], {n, 1, 60}] (* Vincenzo Librandi, Oct 23 2014 *)
PROG
(Java) int a(int n) {return (int) ((2*Math.pow(x, 2))/Math.exp(1.0)); }
(PARI) a(n) = (2*n^2)\exp(1) \\ Michel Marcus, Oct 25 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Juliann Barbella, Oct 06 2014
EXTENSIONS
More terms from Vincenzo Librandi, Oct 23 2014
STATUS
approved