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.

Showing 1-3 of 3 results.

A052077 Smallest prime formed by concatenating n consecutive increasing numbers, or 0 if no such prime exists.

Original entry on oeis.org

2, 23, 0, 4567, 1516171819, 0, 78910111213, 23456789, 0, 45678910111213, 129130131132133134135136137138139, 0, 567891011121314151617, 5051525354555657585960616263, 0, 128129130131132133134135136137138139140141142143
Offset: 1

Views

Author

Patrick De Geest, Jan 15 2000

Keywords

Comments

Starting numbers in concatenations are given by A052079.

Crossrefs

Programs

  • Mathematica
    f[n_] := If[Mod[n, 3] == 0, 0, Block[{k = 1}, While[d = FromDigits@ Flatten@ IntegerDigits[ Range[k, k + n - 1]]; !PrimeQ@ d, k++]; d]]; Array[f, 16] (* Robert G. Wilson v, Jun 29 2012 *)

Extensions

Terms a(7)-a(15) are calculated by Carlos Rivera and Felice Russo
a(16) from Max Alekseyev, Jan 31 2010

A052079 Concatenation of n consecutive ascending numbers starting from a(n) produces the smallest possible prime of this form, 0 if no such prime exists.

Original entry on oeis.org

2, 2, 0, 4, 15, 0, 7, 2, 0, 4, 129, 0, 5, 50, 0, 128, 3, 0, 23, 38, 0, 9998, 17, 0, 25, 2, 0, 16, 341, 0, 569, 42, 0, 14, 1203, 0, 2465, 102, 0, 212, 1161, 0, 197
Offset: 1

Views

Author

Patrick De Geest, Jan 15 2000

Keywords

Comments

Next term a(44)=10^348-32 (only probable prime with 15324 digits). a(110)=9999968. If n is divisible by 22 then either a(n)=0 or a(n)=10^x-b for some bJens Kruse Andersen, Feb 03 2003

Examples

			For n = 7 we have a(7) = 7 so the seven consecutive ascending numbers 7,8,9,10,11,12 and 13 concatenated together gives the smallest possible prime of this form, 78910111213.
		

Crossrefs

Programs

  • PARI
    isok(vc) = {my(x=""); for (i=1, #vc, x = concat(x, Str(vc[i]))); ispseudoprime(eval(x));}
    a(n) = if (n % 3, for(i=1, oo, my(vc = vector(n, k, k+i-1)); if (isok(vc), return(i))), 0); \\ Michel Marcus, Mar 04 2021

Extensions

Terms a(7)-a(43) calculated by Carlos Rivera and Felice Russo

A052080 Concatenation of n consecutive descending numbers starting from a(n) produces the smallest possible prime of this form, 0 if no such prime exists.

Original entry on oeis.org

2, 4, 0, 10, 7, 0, 73, 46, 0, 56, 219, 0, 25, 60, 0, 52, 117, 0, 535, 172, 0
Offset: 1

Views

Author

Patrick De Geest, Jan 15 2000

Keywords

Comments

First hard cases occur for n = 22, 88 and 110.
a(22) = 10^1631 + 10 was found by James G. Merickel in Feb 2011.
a(88) = 10^14 + 6.
a(110) = 10^19 + 26 was found by Chris Nash.

Examples

			For n = 8 we have a(8) = 46 so the eight consecutive descending numbers 46,45,44,43,42,41,40 and 39 concatenated together gives the smallest possible prime of this form, 4645444342414039.
		

Crossrefs

Extensions

Terms a(7)-a(21) calculated by Carlos Rivera and Felice Russo
Showing 1-3 of 3 results.