https://github.com/vanhakobyan/fibonacci-series
:one::one::two::three::five::eight: :round_pushpin:Fibonacci Series, .net framework 4.6 , C# 6.0
https://github.com/vanhakobyan/fibonacci-series
fibonacci fibonacci-series series
Last synced: 6 months ago
JSON representation
:one::one::two::three::five::eight: :round_pushpin:Fibonacci Series, .net framework 4.6 , C# 6.0
- Host: GitHub
- URL: https://github.com/vanhakobyan/fibonacci-series
- Owner: VanHakobyan
- Created: 2017-01-26T16:46:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-26T17:55:44.000Z (over 8 years ago)
- Last Synced: 2025-02-09T06:13:48.395Z (8 months ago)
- Topics: fibonacci, fibonacci-series, series
- Language: C#
- Homepage:
- Size: 9.77 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fibonacci-Series
### .net framework 4.6 , C# 6.0
![]()
In mathematics, the Fibonacci numbers are the numbers in the following integer sequence, called the Fibonacci sequence, and characterized by the fact that every number after the first two is the sum of the two preceding ones:
```c#
static IEnumerable GetCalculatedFibonacciSequence()
{
var current = 1;
var b = 0;
var next = 0;
yield return next;
yield return current;
while (true)
{
next = current + b;
yield return next;
b = current;
current = next;
}
}
```