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.

A072711 Integers m such that the last digit of Fibonacci(m) is 9.

Original entry on oeis.org

11, 29, 31, 32, 38, 49, 52, 58, 71, 89, 91, 92, 98, 109, 112, 118, 131, 149, 151, 152, 158, 169, 172, 178, 191, 209, 211, 212, 218, 229, 232, 238, 251, 269, 271, 272, 278, 289, 292, 298, 311, 329, 331, 332, 338, 349, 352, 358, 371, 389, 391, 392, 398, 409
Offset: 1

Views

Author

Benoit Cloitre, Aug 07 2002

Keywords

Comments

Sequence contains numbers of form (11+60k), (29+60k), (31+60k), (32+60k), (38+60k), (49+60k), (52+60k), (58+60k), with k>=0.

Crossrefs

Programs

  • Mathematica
    Select[Range[500],Last[IntegerDigits[Fibonacci[#]]]==9&] (* or *) LinearRecurrence[ {1,0,0,0,0,0,0,1,-1},{11,29,31,32,38,49,52,58,71},60] (* Harvey P. Dale, Sep 06 2015 *)

Formula

G.f.: x*(2*x^8+6*x^7+3*x^6+11*x^5+6*x^4+x^3+2*x^2+18*x+11) / (x^9-x^8-x+1). - Colin Barker, Jun 16 2013