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.

A104323 Primes which are the reverse concatenation of four consecutive numbers.

Original entry on oeis.org

10987, 22212019, 86858483, 94939291, 100999897, 106105104103, 112111110109, 122121120119, 124123122121, 146145144143, 184183182181, 226225224223, 232231230229, 244243242241, 274273272271, 332331330329, 362361360359
Offset: 1

Views

Author

Shyam Sunder Gupta, Apr 17 2005

Keywords

Examples

			The first term is 10987 which is a prime and is the reverse concatenation of 7,8,9 and 10 which are four consecutive numbers.
		

Crossrefs

Cf. A052089.

Programs

  • Mathematica
    Select[Table[FromDigits[Flatten[IntegerDigits/@Range[n,n-3,-1]]],{n,4,400}],PrimeQ] (* Harvey P. Dale, Aug 02 2021 *)
  • PARI
    forstep(n=10,400,2,isprime(t=eval(Str(n,n-1,n-2,n-3)))&print1(t",")) \\ Zak Seidov, May 08 2013