Fibonacci - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


StringTools

  

Fibonacci

  

generate a Fibonacci string

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Fibonacci( n, a, b )

Parameters

n

-

non-negative integer; specifies that Fibonacci return the nth Fibonacci string

a

-

character; (optional) first symbol to use

b

-

character; (optional) second symbol to use

Description

• 

The Fibonacci(n, a, b) generates the nth Fibonacci string, with initial values a and b. The arguments after the first are optional, and default to the strings 0 and 1, respectively.

• 

Given starting symbols a and b, the nth Fibonacci string is defined by the recurrence Fibonacci( n, a, b ) = cat( Fibonacci( n - 1, a, b ), Fibonacci( n - 2, a, b ) ), for 1<n, and the initial conditions Fibonacci( 0, a, b ) = b and Fibonacci( 1, a, b ) = a. The length of Fibonacci( n ) is equal to the nth+1 Fibonacci number.

• 

The Fibonacci procedure has option remember.

• 

All of the StringTools package commands treat strings as (null-terminated) sequences of 8-bit (ASCII) characters.  Thus, there is no support for multibyte character encodings, such as unicode encodings.

Examples

withStringTools&colon;

Fibonacci5

01001010

(1)

Fibonacci5&comma;u&comma;v

uvuuvuvu

(2)

seqlengthFibonaccii&comma;i=1..10

1,2,3,5,8,13,21,34,55,89

(3)

seqcombinatfibonacci1+i&comma;i=1..10

1,2,3,5,8,13,21,34,55,89

(4)

See Also

combinat[fibonacci]

string

StringTools