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.

A261626 a(n) = Fibonacci(n!) - Fibonacci(n)!.

Original entry on oeis.org

0, 0, 0, 6, 46362, 5358359254990966640871720
Offset: 0

Views

Author

Altug Alkan, Sep 14 2015

Keywords

Examples

			For n = 1, a(n) = Fibonacci(n!) - Fibonacci(n)! = 1 - 1 = 0.
		

Crossrefs

Programs

  • PARI
    a(n) = fibonacci(n!) - fibonacci(n)!;
    vector(6, n, a(n-1))

Formula

a(n) = A063374(n) - A060001(n).
log log a(n) ~ n log n. - Charles R Greathouse IV, Sep 14 2015