A112729 Numbers of the form 2^(k+2)*3*(7*2^k-1) where 7*2^k-1 is prime.
312, 85632, 22013952, 1443107438592, 369435881766912, 24211351590301335552, 103986963299971520879061368832
Offset: 1
Examples
103986963299971520879061368832 is in the sequence because 103986963299971520879061368832=2^(45+2)*3*(7*2^45-1) and 7*2^45-1 is prime.
Programs
-
Mathematica
Do[If[PrimeQ[7*2^n-1], Print[3*2^(n+2)*(7*2^n-1)]], {n, 177}]
Comments