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”).

A133756
a(n) = round( 2*Gamma(3 + n/3) + 2^(n/3) ).
1
5, 7, 10, 14, 21, 33, 52, 85, 144, 248, 438, 791, 1456, 2731, 5213, 10112, 19920, 39819, 80704, 165749, 344758, 725888, 1546398, 3331879, 7257856, 15978098, 35538283, 79834112, 181082105, 414609369, 958004224, 2233339296, 5251710002, 12454043648, 29777842663, 71773351064, 174356586496, 426815713006, 1052675774422
OFFSET
0,1
LINKS
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
Sequence in context: A091522 A020711 A183044 * A196936 A188196 A048584
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Jan 01 2008
EXTENSIONS
Edited by G. C. Greubel, Apr 13 2021
STATUS
approved