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

A019434 Fermat primes: primes of the form 2^(2^k) + 1, for some k >= 0.

Original entry on oeis.org

3, 5, 17, 257, 65537
Offset: 1

Views

Author

Keywords

Comments

It is conjectured that there are only 5 terms. Currently it has been shown that 2^(2^k) + 1 is composite for 5 <= k <= 32 (see Eric Weisstein's Fermat Primes link). - Dmitry Kamenetsky, Sep 28 2008
No Fermat prime is a Brazilian number. So Fermat primes belong to A220627. For proof see Proposition 3 page 36 in "Les nombres brésiliens" in Links. - Bernard Schott, Dec 29 2012
This sequence and A001220 are disjoint (see "Other theorems about Fermat numbers" in Wikipedia link). - Felix Fröhlich, Sep 07 2014
Numbers n > 1 such that n * 2^(n-2) divides (n-1)! + 2^(n-1). - Thomas Ordowski, Jan 15 2015
From Jaroslav Krizek, Mar 17 2016: (Start)
Primes p such that phi(p) = 2*phi(p-1); primes from A171271.
Primes p such that sigma(p-1) = 2p - 3.
Primes p such that sigma(p-1) = 2*sigma(p) - 5.
For n > 1, a(n) = primes p such that p = 4 * phi((p-1) / 2) + 1.
Subsequence of A256444 and A256439.
Conjectures:
1) primes p such that phi(p) = 2*phi(p-2).
2) primes p such that phi(p) = 2*phi(p-1) = 2*phi(p-2).
3) primes p such that p = sigma(phi(p-2)) + 2.
4) primes p such that phi(p-1) + 1 divides p + 1.
5) numbers n such that sigma(n-1) = 2*sigma(n) - 5. (End)
Odd primes p such that ratio of the form (the number of nonnegative m < p such that m^q == m (mod p))/(the number of nonnegative m < p such that -m^q == m (mod p)) is a divisor of p for all nonnegative q. - Juri-Stepan Gerasimov, Oct 13 2020
Numbers n such that tau(n)*(number of distinct ratio (the number of nonnegative m < n such that m^q == m (mod n))/(the number of nonnegative m < n such that -m^q == m (mod n))) for nonnegative q is equal to 4. - Juri-Stepan Gerasimov, Oct 22 2020
The numbers of primitive roots for the five known terms are 1, 2, 8, 128, 32768. - Gary W. Adamson, Jan 13 2022
Prime numbers such that every residue is either a primitive root or a quadratic residue. - Keith Backman, Jul 11 2022
If there are only 5 Fermat primes, then there are only 31 odd order groups which have a 2-group automorphism group. See the Miles Englezou link for a proof. - Miles Englezou, Mar 10 2025

References

  • John H. Conway and Richard K. Guy, The Book of Numbers, New York: Springer-Verlag, 1996. See pp. 137-141, 197.
  • G. Everest, A. van der Poorten, I. Shparlinski and T. Ward, Recurrence Sequences, Amer. Math. Soc., 2003; see esp. p. 255.
  • C. F. Gauss, Disquisitiones Arithmeticae, Yale, 1965; see Table 1, p. 458.
  • Jan Gullberg, Mathematics from the Birth of Numbers, W. W. Norton & Co., NY & London, 1997, §3.2 Prime Numbers, pp. 78-79.
  • Richard K. Guy, Unsolved Problems in Number Theory, A3.
  • Hardy and Wright, An Introduction to the Theory of Numbers, bottom of page 18 in the sixth edition, gives an heuristic argument that this sequence is finite.
  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See pp. 7, 70.
  • James J. Tattersall, Elementary Number Theory in Nine Chapters, Cambridge University Press, 1999, pages 136-137.

Crossrefs

Subsequence of A147545 and of A334101. Cf. also A333788, A334092.
Cf. A045544.

Programs

Formula

a(n+1) = A180024(A049084(a(n))). - Reinhard Zumkeller, Aug 08 2010
a(n) = 1 + A001146(n-1), if 1 <= n <= 5. - Omar E. Pol, Jun 08 2018

A256444 Numbers k such that sigma(k) = 2*(phi(k-1)+1).

Original entry on oeis.org

3, 5, 17, 26, 257, 65537, 10866583226
Offset: 1

Views

Author

Jaroslav Krizek, Mar 31 2015

Keywords

Comments

Subsequence of A256439. Supersequence of Fermat primes (A019434).
a(8) > 10^13. - Giovanni Resta, Jul 13 2015

Examples

			17 is in the sequence because sigma(17) = 18 = 2*(phi(16-1)+1) = 2*9.
		

Crossrefs

Programs

  • Magma
    Set(Sort([n: n in [2..1000000] | SumOfDivisors(n) / (EulerPhi(n-1) + 1) eq 2 ]));
    
  • Mathematica
    Select[Range@ 100000, DivisorSigma[1, #] == 2 (EulerPhi[# - 1] + 1) &] (* Michael De Vlieger, Mar 31 2015 *)
  • PARI
    first(m)={ my(v=vector(m),i,r);r=0;for(i=1,m,until(sigma(r)===2*(eulerphi(r-1)+1),r++);v[i]=r;print1(r,", "););v;} \\ Anders Hellström, Jul 29 2015

Extensions

a(7) from Giovanni Resta, Jul 13 2015

A278919 Numbers n such that phi(n-2) divides sigma(n-1)+1.

Original entry on oeis.org

3, 4, 5, 17, 26, 257, 65537, 4294967297
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Nov 30 2016

Keywords

Comments

Numbers n such that A000010(n-2) divides A000203(n-1)+1.
Supersequence of Fermat primes (A019434).
Conjecture: this sequence is finite.
Any further terms are > 10^12. - Lucas A. Brown, Sep 22 2024

Examples

			3 is in this sequence because phi(1) divides sigma(2)+1; 1 divides 4.
4 is in this sequence because phi(2) divides sigma(3)+1; 1 divides 5.
5 is in this sequence because phi(3) divides sigma(4)+1; 2 divides 8.
17 is in this sequence because phi(15) divides sigma(16)+1; 8 divides 32.
		

Crossrefs

Programs

  • Magma
    [3] cat [n: n in [4..10000000] | Denominator((SumOfDivisors(n-1)+1)/EulerPhi(n-2)) eq 1];
  • Mathematica
    Select[Range[3,66000],Divisible[DivisorSigma[1,(#-1)]+1,EulerPhi[#-2]]&] (* Ivan N. Ianakiev, Dec 05 2016 *)

Extensions

a(8) from Ivan N. Ianakiev, Dec 05 2016
Showing 1-3 of 3 results.