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-1 of 1 results.

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

Original entry on oeis.org

2, 2, 3, 7, 23, 0, 457, 409, 48889, 459841, 6366361
Offset: 1

Views

Author

Sven Simon, May 04 2003

Keywords

Comments

Next term >= 276000000. - Robert G. Wilson v, May 12 2003

Examples

			a(8) = 409 because 409 is the first prime 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[k = NextPrime[k]; j = FromDigits[ Flatten[ Position[ a, PrimitiveRoot[k]]]]; If[ b[[j]] == 0, b[[j]] = k], {n, 1, 10^6}]; b

Formula

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

Extensions

Offset 1 from Michel Marcus, Oct 30 2018
Showing 1-1 of 1 results.