The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A014008 Pisot sequence E(10,22), a(n) = floor( a(n-1)^2/a(n-2)+1/2 ). 1
10, 22, 48, 105, 230, 504, 1104, 2418, 5296, 11600, 25408, 55652, 121896, 266992, 584800, 1280904, 2805600, 6145184, 13459968, 29481744, 64574688, 141439744, 309799425, 678562341, 1486274065, 3255427634, 7130454154, 15618033069, 34208614441, 74928084529 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
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, Advances in Number Theory ( Kingston ON, 1991) 333-340, Oxford Sci. Publ., Oxford Univ. Press, New York, 1993.
FORMULA
Known not to satisfy any linear recurrence.
a(n) = floor(r*s^n+1/2), where r = 9.99722327450628273875296... and s = 2.190327955501779639125414331914733218563545664874673678481473094... . - Benoit Cloitre, Apr 21 2003
PROG
(PARI) pisotE(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/2));
a
}
pisotE(50, 10, 22) \\ Colin Barker, Jul 29 2016
CROSSREFS
Sequence in context: A179877 A216048 A079861 * A219744 A246419 A039315
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 May 24 18:48 EDT 2024. Contains 372781 sequences. (Running on oeis4.)