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.

A117934 Perfect powers (A001597) that are close, that is, between consecutive squares.

This page as a plain text file.
%I A117934 #18 Jan 22 2021 10:03:07
%S A117934 27,32,125,128,2187,2197,6434856,6436343,312079600999,312079650687,
%T A117934 328080401001,328080696273,11305786504384,11305787424768,
%U A117934 62854898176000,62854912109375,79723529268319,79723537443243,4550858390629024
%N A117934 Perfect powers (A001597) that are close, that is, between consecutive squares.
%C A117934 It appears that all pairs of close powers involve a cube. For three pairs, the other power is a 7th power. For all remaining pairs, the other power is a 5th power. If this is true, then three powers are never close.
%C A117934 For the first 360 terms, 176 pairs are a cube and a 5th power. The remaining four pairs are a cube and a 7th power. - _Donovan Johnson_, Feb 26 2011
%C A117934 Loxton proves that the interval [n, n+sqrt(n)] contains at most exp(40 log log n log log log n) powers for n >= 16, and hence there are at most 2*exp(40 log log n log log log n) between consecutive squares in the interval containing n. - _Charles R Greathouse IV_, Jun 25 2017
%H A117934 Donovan Johnson, <a href="/A117934/b117934.txt">Table of n, a(n) for n = 1..360</a>
%H A117934 Daniel J. Bernstein, <a href="https://cr.yp.to/papers/powers.pdf">Detecting perfect powers in essentially linear time</a>, Mathematics of Computation 67 (1998), pp. 1253-1283.
%H A117934 John H. Loxton, <a href="https://eudml.org/doc/205990">Some problems involving powers of integers</a>, Acta Arithmetica 46:2 (1986), pp. 113-123. See Bernstein, Corollary 19.5, for a correction to the proof of Theorem 1.
%H A117934 StackExchange MathOverflow, <a href="https://mathoverflow.net/questions/62444/are-there-ever-three-perfect-powers-between-consecutive-squares/62479">Are there ever three perfect powers between consecutive squares?</a> Answers by Gjergji Zaimi and Felipe Voloch (2011).
%e A117934 27 and 32 are close because they are between 25 and 36.
%t A117934 nMax=10^14; lst={}; log2Max=Ceiling[Log[2,nMax]]; bases=Table[2,{log2Max}]; powers=bases^Range[log2Max]; powers[[1]]=Infinity; currPP=1; cnt=0; While[nextPP=Min[powers]; nextPP <= nMax, pos=Flatten[Position[powers,nextPP]]; If[MemberQ[pos,2], cnt=0, cnt++ ]; If[cnt>1, AppendTo[lst,{currPP,nextPP}]]; Do[k=pos[[i]]; bases[[k]]++; powers[[k]]=bases[[k]]^k, {i,Length[pos]}]; currPP=nextPP]; Flatten[lst]
%Y A117934 Cf. A097056, A117896 (number of perfect powers between consecutive squares n^2 and (n+1)^2).
%Y A117934 Cf. A340696, A340700.
%K A117934 nonn
%O A117934 1,1
%A A117934 _T. D. Noe_, Apr 03 2006