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.

A350690 Numbers k that divide the sum of divisors of Fibonacci(k).

Original entry on oeis.org

1, 3, 4, 7, 8, 9, 13, 14, 16, 17, 18, 19, 21, 23, 24, 26, 27, 28, 30, 31, 32, 34, 36, 37, 38, 39, 42, 43, 44, 46, 47, 48, 49, 51, 52, 53, 54, 56, 57, 59, 61, 62, 63, 64, 67, 68, 69, 70, 71, 72, 73, 74, 76, 78, 79, 81, 83, 84, 86, 87, 88, 90, 91, 92, 93, 94, 96
Offset: 1

Views

Author

Amiram Eldar, Jan 12 2022

Keywords

Comments

This sequence is infinite (Luca, 2002).

Examples

			3 is a term since 3 divides sigma(Fibonacci(3)) = sigma(2) = 3.
4 is a term since 4 divides sigma(Fibonacci(4)) = sigma(3) = 4.
		

Crossrefs

Similar sequences: A074698, A075775.

Programs

  • Mathematica
    Select[Range[100], Divisible[DivisorSigma[1, Fibonacci[#]], #] &]
  • Python
    from sympy import divisor_sigma, fibonacci
    print([k for k in range(1, 97) if divisor_sigma(fibonacci(k)) % k == 0])
    # Karl-Heinz Hofmann, Jan 12 2022

A074699 a(n) = tau(Fibonacci(24*2^n))/(24*2^n) where tau(x) is the number of divisors of x (A000005(x)).

Original entry on oeis.org

3, 7, 32, 144, 5120, 180224, 3145728, 3489660928
Offset: 0

Views

Author

Benoit Cloitre, Sep 03 2002

Keywords

Comments

Are terms always integers?

Crossrefs

Programs

  • Magma
    [NumberOfDivisors(Fibonacci(24*2^n))/(24*2^n): n in [0..5]]; // Vincenzo Librandi, Sep 11 2017
  • Maple
    with(numtheory): with(combinat): a:=n->tau(fibonacci(24*2^n))/(24*2^n): seq(a(n),n=0..4); # Emeric Deutsch, Jan 30 2006
  • Mathematica
    Table[DivisorSigma[0, Fibonacci[24 2^n]] / (24 2^n), {n, 0, 5}] (* Vincenzo Librandi, Sep 11 2017 *)
  • PARI
    a(n) = numdiv(fibonacci(24*2^n))/(24*2^n); \\ Michel Marcus, Sep 10 2017
    

Extensions

a(5) from Eric Rowland, Jun 18 2017
a(6)-a(7) from Amiram Eldar, Sep 03 2019 (using FactorDB)
Showing 1-2 of 2 results.