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.

A020996 Numbers k such that the sum of the digits of Fibonacci(k) in base 12 is k.

Original entry on oeis.org

0, 1, 5, 13, 14, 89, 96, 123, 221, 387, 419, 550, 648, 749, 866, 892, 1105, 2037
Offset: 1

Views

Author

Keywords

Comments

No more terms < 100000. - Manfred Scheucher, Aug 03 2015

Crossrefs

Cf. A020995 (base 10), A025490 (base 11).

Programs

  • Maple
    filter:= proc(n) convert(convert(combinat:-fibonacci(n),base,12),`+`)=n end proc:
    select(filter, [$1..3000]); # Robert Israel, Aug 03 2015
  • PARI
    isok(n) = vecsum(digits(fibonacci(n), 12)) == n; \\ Michel Marcus, Feb 18 2015

Extensions

a(1)=0 inserted by Sean A. Irvine, May 06 2019