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.

A167398 a(n) = Fibonacci(11*n).

Original entry on oeis.org

0, 89, 17711, 3524578, 701408733, 139583862445, 27777890035288, 5527939700884757, 1100087778366101931, 218922995834555169026, 43566776258854844738105, 8670007398507948658051921
Offset: 0

Views

Author

Zak Seidov, Nov 02 2009

Keywords

Crossrefs

Cf. A134498 Fibonacci(7n).

Programs

  • Magma
    [Fibonacci(11*n): n in [0..100]]; // Vincenzo Librandi, Apr 17 2011
  • Mathematica
    (*1*)Table[Fibonacci[11k],{k,0,20}]
    (*2*){a,b}={0,89};Do[Print[c={a,b}.{1,199}];a=b;b=c,{20}]

Formula

a(0)=0, a(1)=89; a(n) = 199*a(n-1) + a(n-2) for n > 1.