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

A093698
a(n) = floor( e^((n/2)*arccosh(1+sqrt(2))) ).
1
1, 2, 4, 9, 21, 45, 98, 210, 452, 971, 2085, 4478, 9618, 20654, 44355, 95252, 204549, 439262, 943298, 2025695, 4350099, 9341661, 20060837, 43079834, 92512195, 198666181, 426627554, 916165344, 1967427861, 4224971416, 9072954499
OFFSET
0,2
LINKS
MATHEMATICA
Table[ Floor[E^(n/2*ArcCosh[1 + Sqrt[2]])], {n, 0, 30}]
PROG
(PARI) for(n=0, 30, print1(floor(exp((n/2)*acosh(1+sqrt(2)))), ", ")) \\ G. C. Greubel, Oct 01 2018
(Magma) [Floor(Exp((n/2)*Argcosh(1+Sqrt(2)))): n in [0..30]]; // G. C. Greubel, Oct 01 2018
CROSSREFS
Cf. A093568.
Sequence in context: A018105 A035056 A332800 * A091619 A061439 A351644
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Apr 09 2004
STATUS
approved