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.

A004693 Fibonacci numbers written in base 12. (Next term contains a non-decimal character.)

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 11, 19
Offset: 0

Views

Author

Keywords

Comments

Breaks most of my rules, but included to help people taking IQ tests.
The next term is 34-in-base-12 which is "2 10", and so cannot be shown here.
Fibonacci numbers expressed in base 12 end in the following two-digit combinations: {00, 01, 01, 02, 03, 05, 08, 11, 19, 2a, 47, 75}. Every twelfth term is divisible by 12^2. Note: here the digit "a" = decimal 10. - Michael De Vlieger, Nov 11 2014

Crossrefs

Cf. A000045.

Programs

  • Mathematica
    a004693[n_Integer] := BaseForm[Fibonacci[n], 12] (* Michael De Vlieger, Nov 11 2014 *)