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.

Showing 1-2 of 2 results.

A160685 Numbers k >= 1 such that A000005(A000045(k))/A000005(k) is an integer.

Original entry on oeis.org

1, 3, 5, 6, 7, 8, 10, 11, 13, 14, 15, 17, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 46, 47, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 91, 93, 94
Offset: 1

Views

Author

Ctibor O. Zizka, May 23 2009

Keywords

Comments

A080651 is a subsequence. - R. J. Mathar, May 25 2009

Crossrefs

Programs

  • Maple
    A000045 := proc(n) combinat[fibonacci](n) ; end: A000005 := proc(n) numtheory[tau](n) ; end: A063375 := proc(n) A000005(A000045(n)) ; end: for n from 1 to 130 do if A063375(n) mod A000005(n) = 0 then printf("%d,",n) ; fi; od: # R. J. Mathar, May 25 2009
  • Mathematica
    okQ[n_] := With[{tau = DivisorSigma[0, #]&},
      IntegerQ[tau[Fibonacci[n]]/tau[n]]];
    Select[Range[100], okQ] (* Jean-François Alcover, May 17 2023 *)

Formula

{n: A000005(n) | A063375(n)}. - R. J. Mathar, May 25 2009

Extensions

2, 12 removed and sequence extended by R. J. Mathar, May 25 2009

A330777 Numbers k such that k and Lucas(k) have the same number of divisors.

Original entry on oeis.org

1, 2, 5, 7, 10, 11, 13, 14, 17, 19, 24, 26, 28, 31, 37, 38, 40, 41, 47, 53, 61, 62, 71, 79, 86, 88, 113, 152, 178, 202, 248, 313, 353, 458, 488, 503, 586, 613, 617, 856, 863, 914, 1082, 1097, 1306, 1318, 1361, 1784
Offset: 1

Views

Author

Chai Wah Wu, Dec 31 2019

Keywords

Comments

All prime terms of A001606 (i.e., terms in A001606 that are not nontrivial powers of 2) are terms of this sequence.
Conjecture: all terms are of the form 2^k*p for k >= 0 and p prime.
It is unknown whether 1816 is a term (the smallest number for which membership in the sequence is unknown); it depends on whether Lucas(1816)/47 is a semiprime or not. The following composite numbers are terms of the sequence: 3106, 3928, 4006, 5414, 5498, 14318, 20578. - Chai Wah Wu, Jan 03 2020

Crossrefs

Programs

  • Mathematica
    Select[Range[100],DivisorSigma[0,#]==DivisorSigma[0,LucasL[#]]&] (* Metin Sariyar, Jan 03 2020 *)
  • PARI
    for(k=1,320,if(numdiv(k)==numdiv(fibonacci(k+1)+fibonacci(k-1)),print1(k,", "))) \\ Hugo Pfoertner, Jan 03 2020
Showing 1-2 of 2 results.