OFFSET
1,1
EXAMPLE
11293 is a term because 11293 = 23*491, 2*11293 - 1 = 22585 = 5*4517, 4*11293 - 1 = 45169 = 17*2657, 8*11293 - 1 = 90337 = 13*6949, 16*11293 - 1 = 180673 = 79*2287, 32*11293 - 1 = 361345 = 5*72269, 64*11293 - 1 = 722689 = 11*65699, and 128*11293 - 1 = 1445377 = 193*7489.
MATHEMATICA
f[n_]:=Last/@FactorInteger[n]=={1, 1}; lst={}; Do[If[f[n]&&f[2*n-1]&&f[4*n-3]&&f[8*n-7]&&f[16*n-15]&&f[32*n-31]&&f[64*n-63]&&f[128*n-127], AppendTo[lst, n]], {n, 11293, 4*9!}]; lst
tdpQ[n_]:=Module[{f=Table[n*2^i-(2^i-1), {i, 0, 7}]}, And@@(Transpose[ FactorInteger[ #]][[2]]=={1, 1}&/@f)]; Select[Range[300000], tdpQ] (* Harvey P. Dale, Apr 02 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, May 04 2010
EXTENSIONS
Example moved from Comments field to Example field by Harvey P. Dale, Apr 02 2015
STATUS
approved