A074215 Numbers m such that m and F(m) are relatively prime, where F(m) denotes the m-th Fibonacci number.
1, 2, 3, 4, 7, 8, 9, 11, 13, 14, 16, 17, 19, 21, 22, 23, 26, 27, 28, 29, 31, 32, 33, 34, 37, 38, 39, 41, 43, 44, 46, 47, 49, 51, 52, 53, 57, 58, 59, 61, 62, 63, 64, 67, 68, 69, 71, 73, 74, 76, 77, 79, 81, 82, 83, 86, 87, 88, 89, 92, 93, 94, 97, 98, 99, 101
Offset: 1
Links
- Lars Blomberg, Table of n, a(n) for n = 1..10000
- Carlo Sanna and Emanuele Tron, The density of numbers n having a prescribed G.C.D. with the nth Fibonacci number Indagationes Mathematicae, Vol. 29, No. 3 (2018), pp. 972-980, preprint, arXiv:1705.01805 [math.NT], 2017.
Programs
-
Mathematica
Select[Range[200], GCD[#, Fibonacci[#]] == 1 &] (* T. D. Noe, Jun 13 2012 *)
-
PARI
isok(n) = gcd(n, fibonacci(n)) == 1; \\ Michel Marcus, May 05 2017
Formula
a(n) is probably asymptotic to c*n with c=1.55(8).....
Comments