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.

A382869 Numbers k >= 1 such that A018804(k) is a Fibonacci number (A000045).

Original entry on oeis.org

1, 2, 3, 4, 7, 9, 11, 1751, 2031, 45012, 105772, 1266256, 1490601, 1774525
Offset: 1

Views

Author

Ctibor O. Zizka, Apr 07 2025

Keywords

Examples

			For k = 4: A018804(4) = 8, 8 is a Fibonacci number, thus 4 is a term.
		

Crossrefs

Similar sequence : A005382.

Programs

  • Mathematica
    fibQ[n_] := Or @@ IntegerQ /@ Sqrt[5*n^2 + {-4, 4}]; f[p_, e_] := (e*(p - 1)/p + 1)*p^e; q[n_] := fibQ[Times @@ f @@@ FactorInteger[n]]; Select[Range[120000], q] (* Amiram Eldar, Apr 07 2025 *)

Extensions

a(10)-a(14) from Amiram Eldar, Apr 07 2025