login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A243093 Least number k > n such that n concatenated with k is a perfect power. 2
6, 5, 6, 9, 12, 25, 29, 41, 61, 24, 56, 25, 31, 44, 21, 81, 28, 49, 36, 25, 87, 201, 104, 336, 281, 244, 44, 224, 241, 276, 36, 49, 64, 81, 344, 100, 249, 44, 69, 96, 209, 436, 56, 89, 369, 225, 61, 400, 284, 176, 84, 441, 361, 76, 225, 169, 76, 564, 319, 84, 504, 500, 504, 516, 536, 564 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
pp[n_]:=Module[{k=n+1}, While[GCD@@FactorInteger[n*10^IntegerLength[ k]+ k][[All, 2]]<2, k++]; k]; Array[pp, 70] (* Harvey P. Dale, Oct 09 2016 *)
PROG
(PARI)
a(n)=s=Str(n); k=n+1; while(!ispower(eval(concat(s, Str(k)))), k++); return(k)
vector(100, n, a(n))
(Python)
from sympy import perfect_power
def a(n):
s, k = str(n), n+1
while not perfect_power(int(s+str(k))): k += 1
return k
print([a(n) for n in range(1, 67)]) # Michael S. Branicky, Jun 05 2021
CROSSREFS
Cf. A245632.
Sequence in context: A019621 A335263 A126689 * A101634 A071176 A243091
KEYWORD
nonn,base
AUTHOR
Derek Orr, Aug 18 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)