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.

A261618 Concatenation of n, n+1 and n.

Original entry on oeis.org

121, 232, 343, 454, 565, 676, 787, 898, 9109, 101110, 111211, 121312, 131413, 141514, 151615, 161716, 171817, 181918, 192019, 202120, 212221, 222322, 232423, 242524, 252625, 262726, 272827, 282928, 293029, 303130, 313231, 323332, 333433, 343534, 353635, 363736
Offset: 1

Views

Author

Keywords

Comments

787, 9109, 111211, 131413, ... are primes. - N. J. A. Sloane, Sep 21 2015

Examples

			a(1) = concatenation(1, 2, 1) = 121.
a(10) = concatenation(10, 11, 10) = 101110.
		

Crossrefs

Programs

  • Magma
    [Seqint(Intseq(n) cat Intseq(n+1) cat Intseq(n)):n in [1..36]]; // Marius A. Burtea, Dec 29 2019
  • Maple
    f:= n -> n + 10^(1+ilog10(n))*(n+1)+10^(2+ilog10(n)+ilog10(n+1))*n:
    map(f, [$1..100]); # Robert Israel, Dec 29 2019
  • Mathematica
    Map[FromDigits@ Join[#1, #2, #1] & @@ IntegerDigits[#] &, Partition[Range@ 37, 2, 1]] (* Michael De Vlieger, Dec 29 2019 *)
  • PARI
    a(n) = eval(concat(Str(n), concat(Str(n+1), Str(n)))); \\ Michel Marcus, Sep 10 2015
    

Extensions

More terms from Michel Marcus, Sep 10 2015