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.

A160683 Numbers n >= 1 such that A000045(n)/A000005(A000045(n)) is an integer.

Original entry on oeis.org

1, 2, 3, 6, 24, 48
Offset: 1

Views

Author

Ctibor O. Zizka, May 23 2009

Keywords

Comments

No further term between 48 and 320. - R. J. Mathar, Apr 01 2011
This sequence is complete. For proof see the Luca-Young paper in links section, pages 7-10. - Altug Alkan, Apr 26 2016

Crossrefs

Programs

  • Maple
    with(combinat):with(numtheory): A160683 := proc(n) option remember: local k: if(n=1)then return 1:fi: for k from procname(n-1)+1 do if(fibonacci(k) mod tau(fibonacci(k))=0)then return k:fi: od: end: seq(A160683(n), n=1..6); # Nathaniel Johnston, May 09 2011
  • Mathematica
    Select[Range@ 120, IntegerQ[#/DivisorSigma[0, #]] &@ Fibonacci@ # &]
  • PARI
    isok(n) = my(f=fibonacci(n)); f % numdiv(f) == 0; \\ Michel Marcus, Jul 31 2015

Formula

{n: A063375(n) | A000045(n)} . - R. J. Mathar, Apr 01 2011