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

A281389 Least k > 1 such that refactorable number k is an n-th power.

Original entry on oeis.org

2, 9, 8, 625, 7776, 117649, 128, 6561, 1000000000, 25937424601, 362797056, 23298085122481, 2541865828329, 29192926025390625, 32768, 48661191875666868481, 16926659444736, 104127350297911241532841, 10000000000000000000, 278218429446951548637196401
Offset: 1

Views

Author

Altug Alkan, Jan 21 2017

Keywords

Examples

			a(4) = 625 because 625 = 5^4 is the least fourth power refactorable number that is greater than 1.
		

Crossrefs

Programs

  • PARI
    isA033950(n) = n % numdiv(n) == 0;
    a(n) = {my(k=2); while (!isA033950 (k^n), k++); k^n; }

Formula

a(n) = A281495(n)^n.

Extensions

More terms from Giovanni Resta, Jan 22 2017
Showing 1-1 of 1 results.