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.

A114754 Smallest prime of the form: n successive positive integers in ascending order followed by a 1.

Original entry on oeis.org

11, 10111, 1231, 67891, 9101112131, 3456781, 91011121314151, 45678910111, 1234567891, 303132333435363738391, 12345678910111, 939495969798991001011021031041, 91011121314151617181920211
Offset: 1

Views

Author

Amarnath Murthy, Jan 01 2006

Keywords

Examples

			a(2) = 10111= 10 followed by 11 followed by 1.
a(3) = 1231, three successive positive integers 1,2,3 in ascending order followed by a 1.
		

Crossrefs

Programs

  • Mathematica
    a[n_]:=(For[m=1, (v={};Do[v=Join[v, IntegerDigits[k]], {k, m, m+n-1}]);!PrimeQ[10FromDigits[v]+1], m++ ];10FromDigits[v]+1);Table[a[n], {n, 14}] - Farideh Firoozbakht
    f[n_] := Block[{t = Range@n}, While[p = FromDigits@Flatten@IntegerDigits@Join[t, {1}]; !PrimeQ@p, t++ ]; p]; Array[f, 13] (* Robert G. Wilson v *)

Extensions