[go: up one dir, main page]

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!)
A020730 Pisot sequences L(3,7) or S(3,7). 2
3, 7, 17, 42, 104, 258, 641, 1593, 3959, 9840, 24458, 60793, 151108, 375597, 933592, 2320557, 5768028, 14337139, 35636713, 88579410, 220174961, 547271804, 1360311028, 3381219496, 8404434755, 20890250880, 51925274519, 129066622961, 320810882887 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Coincides with the Shallit (generalized Pisot) sequence S(3,7) - as defined in A022020 - at least up to n=30000. - R. J. Mathar, Feb 12 2016
LINKS
PROG
(PARI) pisotL(nmax, a1, a2) = {
a=vector(nmax); a[1]=a1; a[2]=a2;
for(n=3, nmax, a[n] = ceil(a[n-1]^2/a[n-2]));
a
}
pisotL(50, 3, 7) \\ Colin Barker, Aug 07 2016
CROSSREFS
See A008776 for definitions of Pisot sequences.
See A014009 for first differences.
Sequence in context: A244782 A175094 A086395 * A003440 A244455 A102071
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 August 30 09:19 EDT 2024. Contains 375532 sequences. (Running on oeis4.)