A229194 Integers nearest to (2^((n-3)/2) + 3^((n-3)/2)).
1, 1, 1, 2, 3, 5, 8, 13, 21, 35, 58, 97, 163, 275, 466, 793, 1353, 2315, 3969, 6817, 11726, 20195, 34816, 60073, 103724, 179195, 309724, 535537, 926275, 1602515, 2773034, 4799353, 8307516, 14381675, 24899377, 43112257, 74651790, 129271235, 223862687, 387682633, 671402698, 1162785755, 2013837368, 3487832977, 6040770648, 10462450355, 18120829034, 31385253913, 54359521280, 94151567435, 163072632198
Offset: 0
Keywords
References
- T. Koshy, Fibonacci and Lucas Numbers with Applications, New York, Wiley-Interscience, 2001
- I. Stewart, L'univers des nombres, Belin-Pour La Science, Paris 2000.
Links
- Vladimir Pletser, Table of n, a(n) for n = 0..1000
- R. K. Guy, The Second Strong Law of Small Numbers, Math. Mag, 63 (1990), no. 1, 3-20.
- I. Stewart, Fibonacci Forgeries
- Eric Weisstein's World of Mathematics, Fibonacci Number.
- Eric Weisstein's World of Mathematics, Strong Law of Small Numbers.
Programs
-
Magma
[Round(2^((n-3)/2) + 3^((n-3)/2)): n in [0..50]]; // Vincenzo Librandi, Sep 20 2013
-
Maple
seq(round(2^((n-3)/2)+3^((n-3)/2)), n=0..50);
-
Mathematica
Table[Round[2^((n - 3)/2) + 3^((n - 3)/2)], {n, 0, 50}] (* Vincenzo Librandi, Sep 20 2013 *)
Formula
a(n) = round(2^((n-3)/2) + 3^((n-3)/2)).
Comments