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!)
A020741 Pisot sequence T(6,10), a(n) = floor(a(n-1)^2/a(n-2)). 1
6, 10, 16, 25, 39, 60, 92, 141, 216, 330, 504, 769, 1173, 1789, 2728, 4159, 6340, 9664, 14730, 22451, 34219, 52155, 79492, 121157, 184660, 281447, 428963, 653797, 996474, 1518759, 2314790, 3528046, 5377208, 8195575, 12491138, 19038142, 29016639, 44225184 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
MATHEMATICA
nxt[{a_, b_}]:={b, Floor[b^2/a]}; NestList[nxt, {6, 10}, 40][[All, 1]] (* Harvey P. Dale, Dec 27 2021 *)
PROG
(PARI) pisotT(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]));
a
}
pisotT(50, 6, 10) \\ Colin Barker, Jul 29 2016
CROSSREFS
See A008776 for definitions of Pisot sequences.
Sequence in context: A230276 A079329 A302748 * A274287 A090991 A019533
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 2 23:14 EDT 2024. Contains 372203 sequences. (Running on oeis4.)