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!)
A010918 Shallit sequence S(8,55): a(n) = floor(a(n-1)^2/a(n-2) + 1). 2
8, 55, 379, 2612, 18002, 124071, 855106, 5893451, 40618081, 279942687, 1929384798, 13297456486, 91647010581, 631637678776, 4353291555505, 30003193292641, 206784130187015, 1425170850320396, 9822378297435246, 67696525926163327, 466569244606302614 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Agrees with A019484 for terms 0 through 11055 but then differs from it. It is not known if S(8,55) satisfies a linear recurrence.
a(11056) = 4971494197...7586894095 (9270 digits) = A019484(11056) + 1. - Jianing Song, Oct 15 2021
LINKS
D. W. Boyd, Some integer sequences related to the Pisot sequences, Acta Arithmetica, 34 (1979), 295-305.
D. W. Boyd, Linear recurrence relations for some generalized Pisot sequences, in Advances in Number Theory (Kingston ON, 1991), pp. 333-340, Oxford Univ. Press, New York, 1993; with updates from 1996 and 1999.
Jeffrey Shallit, Problem B-686, Fib. Quart., 29 (1991), 85.
PROG
(PARI) pisotS(nmax, a1, a2) = {
a=vector(nmax); a[1]=a1; a[2]=a2;
for(n=3, nmax, a[n] = floor(a[n-1]^2/a[n-2]+1));
a
}
pisotS(50, 8, 55) \\ Colin Barker, Aug 09 2016
CROSSREFS
Sequence in context: A033890 A010924 A308687 * A019484 A108984 A264342
KEYWORD
nonn
AUTHOR
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 29 15:32 EDT 2024. Contains 372114 sequences. (Running on oeis4.)