OFFSET
0,1
LINKS
Paul Tek, Table of n, a(n) for n = 0..10000
Paul Tek, PARI program for this sequence
EXAMPLE
a(0)=26 -> 26^(1/2)=5.{0}990195...
a(1)=10 -> 10^(1/2)=3.{1}622776...
PROG
(Python)
from math import isqrt
def a(n):
if n == 0: return 26
k, pow10 = 1, 10**len(str(n))
while isqrt(pow10**2*k)%pow10 != n: k += 1
return k
print([a(n) for n in range(62)]) # Michael S. Branicky, Mar 15 2021, edited Jan 11 2026
CROSSREFS
KEYWORD
AUTHOR
Patrick De Geest, Sep 15 1998
EXTENSIONS
Title corrected by Sean A. Irvine, Aug 02 2020
STATUS
approved
