OFFSET
1,1
REFERENCES
O. Perron, "Die Lehre von den Kettenbruechen, Bd.I", Teubner, 1954. (Sec. 26)
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
Len Smiley, Initial Euler - Muir Polynomials
EXAMPLE
33, 60 and 95 are not in the list because their square roots' simple continued fractions, [5,1,2,1,10,1,2,1,10,...], [7,1,2,1,14,...] and [9,1,2,1,18,...], have the same maximal palindrome in their periods as the square root of 14, [3,1,2,1,6,1,2,1,6,...] does.
PROG
(Python)
from sympy.ntheory.continued_fraction import continued_fraction_periodic
A056825_list, nset, n = [], set(), 1
while len(A056825_list) < 10000:
cf = continued_fraction_periodic(0, 1, n)
if len(cf) > 1:
pal = tuple(cf[1][:-1])
if pal not in nset:
A056825_list.append(n)
nset.add(pal)
n += 1 # Chai Wah Wu, Sep 13 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Len Smiley, Aug 29 2000
EXTENSIONS
More terms from Naohiro Nomoto, Nov 09 2001
Missing terms 108 and 117 added by Chai Wah Wu, Sep 13 2021
STATUS
approved