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.

A072712 Primes p such that p divides the (right) concatenation of all numbers from 1 to p written in base 10 (most significant digit on left).

Original entry on oeis.org

2, 3, 5, 8167, 371321
Offset: 1

Views

Author

Jeff Heleen, Aug 07 2002

Keywords

Comments

Right concatenation, normal order.
Primes in A029455. - Derek Orr, Oct 04 2014

Examples

			p=17 is not a term since 1234567891011121314151617 is not divisible by 17.
		

Crossrefs

Programs

  • PARI
    p=""; n=1; while(n<10^4, p=concat(p,Str(n)); if(eval(p)%n==0&&isprime(n), print1(n,", ")); n++) \\ Derek Orr, Oct 04 2014

Extensions

Another term from Jeff Heleen, Oct 11 2009