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.

A083216 Fibonacci-like sequence of composite numbers with a(0) = 20615674205555510, a(1) = 3794765361567513.

Original entry on oeis.org

20615674205555510, 3794765361567513, 24410439567123023, 28205204928690536, 52615644495813559, 80820849424504095, 133436493920317654, 214257343344821749, 347693837265139403, 561951180609961152, 909645017875100555, 1471596198485061707, 2381241216360162262
Offset: 0

Views

Author

Harry J. Smith, Apr 23 2003

Keywords

Comments

a(0) = 20615674205555510, a(1) = 3794765361567513. This is a second-order linear recurrence sequence with a(0) and a(1) coprime that does not contain any primes. It was found by Herbert S. Wilf in 1990.

Crossrefs

Programs

  • Maple
    a:= n-> (<<0|1>, <1|1>>^n. <<20615674205555510, 3794765361567513>>)[1, 1]:
    seq(a(n), n=0..20);  # Alois P. Heinz, Apr 04 2013
  • Mathematica
    LinearRecurrence[{1,1},{20615674205555510,3794765361567513},25] (* Paolo Xausa, Nov 07 2023 *)
  • PARI
    Vec((20615674205555510-16820908843987997*x)/(1-x-x^2)+O(x^9)) \\ Charles R Greathouse IV, Sep 23 2012

Formula

a(n) = a(n-1) + a(n-2) for n>1.
G.f.: (20615674205555510-16820908843987997*x)/(1-x-x^2).