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.

A111875 Concatenate the consecutive increasing numbers starting with prime(n) and ending with prime(n+1).

Original entry on oeis.org

23, 345, 567, 7891011, 111213, 1314151617, 171819, 1920212223, 23242526272829, 293031, 31323334353637, 3738394041, 414243, 4344454647, 47484950515253, 53545556575859, 596061, 61626364656667, 6768697071, 717273, 73747576777879
Offset: 1

Views

Author

Jason Earls, Aug 18 2005

Keywords

Examples

			a(4)=7891011 because the 4th prime is 7 and the 5th is 11 and we concatenate those with the increasing numbers between.
		

Programs

  • Mathematica
    ccd[{a_,b_}]:=FromDigits[Flatten[IntegerDigits/@Range[a,b]]]; ccd/@ Partition[ Prime[ Range[30]],2,1] (* Harvey P. Dale, Jun 08 2015 *)