OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = round(2*Gamma(f(n) + 3) + 2^f(n)), where f(n) = n/3.
MATHEMATICA
Table[Round[2*Gamma[3+n/3] + 2^(n/3)], {n, 0, 40}] (* modified by G. C. Greubel, Apr 13 2021 *)
PROG
(Magma) [Round(2*Gamma(n/3 + 3) + 2^(n/3)): n in [0..40]]; // G. C. Greubel, Apr 13 2021
(Sage) [round(2*gamma(n/3 + 3) + 2^(n/3)) for n in (0..40)] # G. C. Greubel, Apr 13 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Jan 01 2008
EXTENSIONS
Edited by G. C. Greubel, Apr 13 2021
STATUS
approved