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.

A110680 Numbers k such that the string 4444k is prime.

Original entry on oeis.org

9, 21, 43, 49, 61, 63, 69, 73, 87, 109, 127, 147, 159, 169, 171, 201, 207, 213, 217, 229, 241, 261, 289, 291, 331, 339, 357, 369, 381, 397, 409, 469, 471, 483, 487, 507, 519, 549, 591, 607, 621, 639, 663, 669, 697, 703, 711, 717, 729, 747
Offset: 1

Views

Author

Parthasarathy Nambi, Sep 14 2005

Keywords

Examples

			k=109 is in the sequence because 4444k = 4444109 is prime.
		

Programs

  • Mathematica
    Select[Range[800],PrimeQ[4444*10^IntegerLength[#]+#]&] (* Harvey P. Dale, Jul 04 2014 *)