A215473 Number of prime quadruples with smallest member < 2^n.
0, 0, 1, 2, 2, 2, 3, 4, 4, 5, 7, 10, 11, 16, 23, 28, 43, 62, 106, 177, 309, 483, 795, 1305, 2105, 3525, 5923, 10096, 17259, 30004
Offset: 1
Keywords
Examples
a(3) = 1 because there is only one prime quadruple below 2^3, namely {5, 7, 11, 13}. a(4) = 2 because there are two prime quadruples below 2^4: the aforementioned and {11, 13, 17, 19}.
Crossrefs
Programs
-
Mathematica
(* First run program for A007530 *) Table[Length[Select[A007530, # < 2^n &]], {n, 14}] (* Alonso del Arte, Aug 12 2012 *)
Comments