A078334 Primes in A005728, which counts the terms in the Farey sequence of order n.
2, 3, 5, 7, 11, 13, 19, 23, 29, 43, 47, 59, 73, 97, 103, 151, 173, 181, 271, 397, 433, 491, 883, 941, 1087, 1103, 1163, 1193, 1229, 1427, 1471, 1697, 2143, 2273, 2657, 2903, 3533, 3677, 4073, 4129, 4201, 4259, 4637, 5023, 5107, 5953, 6163, 6599, 7177, 7237
Offset: 1
Examples
The Farey sequence of order 6 is {0, 1/6, 1/5, 1/4, 1/3, 2/5, 1/2, 3/5, 2/3, 3/4, 4/5, 5/6, 1}, which has 13 terms, so 13 is in the sequence.
References
- H. Rademacher, Lectures on Elementary Number Theory, 1964. pp. 5-11.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Richard K. Guy, The Strong Law of Small Numbers, Amer. Math. Monthly 95 (1988), no. 8, 697-712.
- Eric Weisstein's World of Mathematics, Farey Sequence.
Crossrefs
Programs
-
Mathematica
fc[n_] := 1+Sum[EulerPhi[k], {k, 1, n}]; Select[fc/@Range[200], PrimeQ]
Extensions
Offset corrected by Amiram Eldar, Mar 01 2020
Comments