login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A281623
Numbers of the form 2^phi(m) + 1, where phi = A000010 = Euler totient function.
1
3, 5, 17, 65, 257, 1025, 4097, 65537, 262145, 1048577, 4194305, 16777217, 268435457, 1073741825, 4294967297, 68719476737, 1099511627777, 4398046511105, 17592186044417, 70368744177665, 281474976710657, 4503599627370497, 18014398509481985, 72057594037927937
OFFSET
1,1
COMMENTS
Possible values of A243305 (2^phi(n) + 1).
The first 5 known Fermat primes from A019434 are in the sequence.
EXAMPLE
5 = 2^2 + 1 is a term because there are 3 numbers n (3, 4 and 6) with phi(n) = 2.
MATHEMATICA
Union[2^EulerPhi@ Range[10^3] + 1] (* Michael De Vlieger, Jan 30 2017 *)
PROG
(Magma) Set(Sort([2^(EulerPhi(n)) + 1: n in[1..500]]))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jan 25 2017
STATUS
approved