cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A199575 a(n) = floor(Fibonacci(n)^(1/4)).

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 21, 23, 26, 30, 34, 38, 43, 48, 55, 62, 70, 79, 89, 100, 113, 127, 144, 162, 183, 207, 233, 263, 296, 334, 377, 426, 480, 541, 611, 689, 777, 876, 989, 1115, 1258, 1418, 1600, 1804, 2035, 2295, 2589, 2920, 3293, 3714, 4189, 4725, 5329, 6010, 6778
Offset: 0

Views

Author

N. J. A. Sloane, Nov 09 2011

Keywords

Comments

The Ferraro problem asks for a proof that, for n>=9, floor(F(n)^(1/4)) = floor(F(n-4)^(1/4)+F(n-8)^(1/4)). As of November 2005 this problem remained unsolved.

Crossrefs

Cf. A061287.

Programs

  • Magma
    [Floor(Fibonacci(n)^(1/4)): n in [0..80]]; // Vincenzo Librandi, Aug 28 2016
    
  • Mathematica
    Table[Floor[Fibonacci[n]^(1/4)], {n, 0, 80}] (* Vincenzo Librandi, Aug 28 2016 *)
  • PARI
    a(n) = sqrtnint(fibonacci(n), 4); \\ Michel Marcus, Aug 28 2016