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.

A083702 Smallest number having Fibonacci(n) as least primitive root, or 0 if no such number exists.

Original entry on oeis.org

2, 2, 3, 4, 6, 0, 457, 362, 48889, 108362, 3418682
Offset: 1

Views

Author

Sven Simon, May 04 2003

Keywords

Examples

			a(8) = 362 because 362 is the first number having Fibonacci(8) = 21 as least primitive root.
		

Crossrefs

Programs

  • Mathematica
    << NumberTheory`NumberTheoryFunctions`; a = Table[ Fibonacci[i], {i, 2, 20}]; b = Table[0, {20}]; k = 1; Do[j = FromDigits[ Flatten[ Position[ a, PrimitiveRoot[n]]]]; If[ b[[j]] == 0, b[[j]] = n], {n, 2, 10^6}]; b

Formula

a(n) = A214158(A000045(n)). - Jianing Song, Oct 31 2018

Extensions

Offset 1 from Michel Marcus, Oct 30 2018
a(4) corrected by Jianing Song, Oct 31 2018