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.

A221286 Vsemirnov's sequence.

Original entry on oeis.org

106276436867, 35256392432, 141532829299, 176789221731, 318322051030, 495111272761, 813433323791, 1308544596552, 2121977920343, 3430522516895, 5552500437238, 8983022954133, 14535523391371, 23518546345504, 38054069736875, 61572616082379, 99626685819254, 161199301901633, 260825987720887, 422025289622520
Offset: 0

Views

Author

Keywords

Comments

A primefree linear recurrence with no common factors. As of 2004 no such sequences with smaller starting terms were known.

Crossrefs

Other primefree linear recurrences: A083104 (Graham 1964), A082411 (Nicol 1999), A083105 (Knuth 1990), A083216 (Wilf 1990).

Programs

  • Maple
    a:= n-> (<<0|1>, <1|1>>^n. <<106276436867, 35256392432>>)[1, 1]:
    seq(a(n), n=0..20);  # Alois P. Heinz, Apr 04 2013
  • Mathematica
    LinearRecurrence[{1, 1}, {106276436867, 35256392432}, 20] (* Alonso del Arte, Feb 05 2013 *)
  • PARI
    Vec((106276436867-71020044435*x)/(1-x-x^2)+O(x^30)) \\ Charles R Greathouse IV, Dec 09 2014

Formula

a(n) = a(n-1) + a(n-2).
G.f.: (106276436867-71020044435*x)/(1-x-x^2).

Extensions

Offset corrected by Alois P. Heinz, Apr 04 2013