login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A020575 Smallest nonempty set S containing prime divisors of 2k + 1 for each k in S. 3

%I #15 Jul 09 2018 21:25:30

%S 3,5,7,11,13,19,23,47

%N Smallest nonempty set S containing prime divisors of 2k + 1 for each k in S.

%e 2 * 3 + 1 = 7, which is in the set.

%e 2 * 5 + 1 = 11, which is also in the set.

%e 2 * 7 + 1 = 15 = 3 * 5, both of which are in the set.

%e 2 * 11 + 1 = 23, which is in the set.

%e 2 * 13 + 1 = 27 = 3^3, and 3 is in the set.

%e 2 * 19 + 1 = 39 = 3 * 13, both of which are in the set.

%e 2 * 23 + 1 = 47, which is in the set.

%e 2 * 47 + 1 = 95 = 5 * 19, both of which are in the set.

%t setSeek[s_List] := FactorInteger[2 * # + 1][[All, 1]]& /@ s // Flatten // Union; FixedPoint[Union[#, setSeek[#]]&, setSeek[{1}]] (* _Jean-François Alcover_, Apr 30 2014 *)

%Y Cf. A020588.

%K nonn,fini,full

%O 1,1

%A _David W. Wilson_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 09:18 EDT 2024. Contains 371935 sequences. (Running on oeis4.)