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!)
A117649 A Verhulst/ Pearl's equation type simulation of a sigmoid population sequence using a base A000045 model ( the populations are not smooth curves but integers). 0
0, 1, 1, 1, 2, 4, 7, 11, 17, 25, 35, 47, 58, 69, 78, 85, 90, 93, 96, 97, 98, 99, 99, 100, 100, 100 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Constants L=200 and A=199 adjust how fast and high the plateau is reached. This type of model is more realistic than the Fibonacci rabbits, but basically starts out with the same kind of variance.
LINKS
FORMULA
f[n]=L/(1+A/(f[n-1]+f[n-2))) a(n) = Floor[f(n))
MATHEMATICA
lear[f, M, v] f[0] = 0; f[1] = 1; f[n_] := f[n] = N[200/(1 + 199/(f[n - 1] + f[n - 2]))] Table[Abs[Floor[f[n]]], {n, 0, 25}] ListPlot[%, PlotJoined -> True, PlotRange -> All]
CROSSREFS
Cf. A000045.
Sequence in context: A073471 A308825 A266901 * A028291 A067997 A175491
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Apr 10 2006
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 September 8 19:26 EDT 2024. Contains 375754 sequences. (Running on oeis4.)