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-2 of 2 results.

A206528 5^n concatenated with itself.

Original entry on oeis.org

11, 55, 2525, 125125, 625625, 31253125, 1562515625, 7812578125, 390625390625, 19531251953125, 97656259765625, 4882812548828125, 244140625244140625, 12207031251220703125, 61035156256103515625, 3051757812530517578125, 152587890625152587890625
Offset: 0

Views

Author

Vincenzo Librandi, Mar 17 2012

Keywords

Examples

			a(1)=55 because 5^1 concatenated with 5^1 is 55.
		

Crossrefs

Programs

  • Magma
    [Seqint(Intseq(5^n) cat Intseq(5^n)): n in [0..20]];
  • Mathematica
    Table[FromDigits[Join[IntegerDigits[5^n],IntegerDigits[5^n]]],{n,0,20}]

Formula

a(n) = A020338(5^n).

A206529 7^n concatenated with itself.

Original entry on oeis.org

11, 77, 4949, 343343, 24012401, 1680716807, 117649117649, 823543823543, 57648015764801, 4035360740353607, 282475249282475249, 19773267431977326743, 1384128720113841287201, 9688901040796889010407, 678223072849678223072849
Offset: 0

Views

Author

Vincenzo Librandi, Mar 18 2012

Keywords

Examples

			a(1)=77 because 7^1 concatenated with 7^1 is 77.
		

Crossrefs

Programs

  • Magma
    [Seqint(Intseq(7^n) cat Intseq(7^n)): n in [0..20]];
  • Mathematica
    Table[FromDigits[Join[IntegerDigits[7^n],IntegerDigits[7^n]]],{n,0,20}]
    #*10^IntegerLength[#]+#&/@(7^Range[0,20]) (* Harvey P. Dale, Jul 19 2022 *)

Formula

a(n) = A020338(7^n).
Showing 1-2 of 2 results.