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.

A061088 a(n) = A053062(n) / n.

Original entry on oeis.org

1, 12, 123, 120304, 102030405, 10203040506, 1020304050607, 102030405060708, 10203040506070809, 10203040506070809010, 10203040506070809010011, 102030405060708009010011012, 1020304050607008009010011012013, 1020304050607008009010011012013014
Offset: 1

Views

Author

Amarnath Murthy, Apr 19 2001

Keywords

Examples

			a(5) = 102030405 = 510152025/5, where 510152025 is obtained by concatenating 5,10,15,20 and finally 25 (which is 5^2).
		

Crossrefs

Cf. A053062.

Programs

  • PARI
    a(n)={fromdigits(concat(vector(n, k, digits(k*n))))/n} \\ Andrew Howroyd, Nov 09 2019

Extensions

Offset corrected and terms a(7) and beyond from Andrew Howroyd, Nov 09 2019

A326120 a(n) is the concatenation of n^1, n^2, ..., n^n.

Original entry on oeis.org

1, 24, 3927, 41664256, 5251256253125, 6362161296777646656, 749343240116807117649823543, 864512409632768262144209715216777216, 981729656159049531441478296943046721387420489, 10100100010000100000100000010000000100000000100000000010000000000
Offset: 1

Views

Author

Trevor Mulindi, Sep 10 2019

Keywords

Comments

a(100) has 10200 digits.
a(n) is the concatenation of the n terms of the n-th row of A075363 triangle. - Michel Marcus, Sep 15 2019

Crossrefs

Programs

  • Maple
    a:= n-> parse(cat(n^j$j=1..n)):
    seq(a(n), n=1..14);  # Alois P. Heinz, Jan 24 2021
  • Mathematica
    a[n_] := FromDigits@ Flatten@ IntegerDigits[n^Range[n]]; Array[a, 10] (* Giovanni Resta, Sep 12 2019 *)
  • Python
    def a(n): return int("".join(str(n**i) for i in range(1, n+1)))
    print([a(n) for n in range(1, 11)]) # Michael S. Branicky, Jan 24 2021

Extensions

More terms from Giovanni Resta, Sep 12 2019
Showing 1-2 of 2 results.