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.

A062018 a(n) = n^n written backwards.

Original entry on oeis.org

1, 4, 72, 652, 5213, 65664, 345328, 61277761, 984024783, 1, 116076113582, 6528440016198, 352295601578203, 61085552860021111, 573958083098398734, 61615590737044764481, 771467633688162042728, 42457573569257080464393
Offset: 1

Views

Author

Amarnath Murthy, Jun 01 2001

Keywords

Examples

			a(5) = 5213, as 5^5 = 3125.
		

Crossrefs

Programs

  • Maple
    with(numtheory):for n from 1 to 50 do a := convert(n^n,base,10):b := add(10^(nops(a)- i)*a[i],i=1..nops(a)):printf(`%d,`,b); od:
  • Mathematica
    Table[IntegerReverse[n^n],{n,20}] (* Harvey P. Dale, Jul 31 2022 *)
  • PARI
    a(n) = { fromdigits(Vecrev(digits( n^n )))} \\ Harry J. Smith, Jul 29 2009

Formula

a(n) = A004086(n^n).

Extensions

More terms from Jason Earls and Vladeta Jovovic, Jun 01 2001

A133136 Powers of 3 written backwards and sorted.

Original entry on oeis.org

1, 3, 9, 18, 72, 342, 927, 1656, 7812, 38691, 94095, 144135, 741771, 3234951, 9692874, 12764034, 70984341, 361041921, 984024783, 1044876843, 7641622611, 30235306401, 72887134149, 90695018313, 184635924282, 344906882748
Offset: 1

Views

Author

Jonathan Vos Post, Sep 21 2007

Keywords

Comments

This is to A000244 as A034906 is to A000079.

Crossrefs

Programs

  • Mathematica
    Sort[IntegerReverse[3^Range[0,30]]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 10 2016 *)
Showing 1-2 of 2 results.