cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A334346 Starts of runs of 3 consecutive binary Moran numbers (A334344).

Original entry on oeis.org

126866286, 133542126, 148891086, 150959502, 173668302, 207567342, 227950542, 257154606, 263874222, 284421582, 295075566, 331190766, 373024206, 390589326, 392805486, 393817806, 395760366, 397921806, 441314766, 459700686, 459990702, 516188142, 527006286, 586869966
Offset: 1

Views

Author

Amiram Eldar, Apr 23 2020

Keywords

Examples

			126866286 is a term since 126866286/A000120(126866286) = 7048127, 126866287/A000120(126866287) = 6677173 and 126866288/A000120(126866288) = 7929143 are all prime numbers.
		

Crossrefs

Subsequence of A330932, A334344 and A334345.

Programs

  • Mathematica
    binMoranQ[n_] := PrimeQ[n / DigitCount[n, 2, 1]]; bin = binMoranQ /@ Range[3]; seq = {}; Do[If[And @@ bin, AppendTo[seq, k - 3]]; bin = Join[Rest[bin], {binMoranQ[k]}], {k, 4, 2 * 10^8}]; seq