A136473 Primitive elements of the sequence of integers n such that n divides 2^n + 1 (A006521).
1, 3, 171, 13203, 97641, 354537, 2354697, 10970073, 29884473, 33894369, 38265939, 74214171, 116226009, 344380329, 751611177, 892145817, 2595432537, 4014314433, 10161972027, 11852199369, 13229694441, 22032887841, 22230967347, 22864359897, 24020090001, 26761542921, 27439598619, 27932906619, 37498011939, 166111451217, 189836046171
Offset: 1
Keywords
Examples
9 is in A006521 but is not primitive because its set of prime divisors is the same as that of 3, which divides 9 and is in A006521. 250857 is in A006521 but not primitive, as 250857=lcm(171,13203) and both 171 and 13203 are in A006521.
Links
- Max Alekseyev, Table of n, a(n) for n = 1..41
- Toby Bailey and Chris Smyth, Primitive solutions of n|2^n+1.
Programs
-
Maple
L:=1: S:={}: for j from 3 by 6 to 10^7 do if not 2&^j+1 mod j = 0 then next end if; if not (j in S) then L := L,j end if; S := S union map( ilcm, S, j ) union {j}; S := S union map(`*`, {map2( op, 1, ifactors(j)[2] )[]}, j); end do: L;
Extensions
More terms from Max Alekseyev, Aug 04 2011
Comments