{"id":23089671,"url":"https://github.com/vanhakobyan/fibonacci-series","last_synced_at":"2025-04-03T17:25:29.169Z","repository":{"id":82819176,"uuid":"80133603","full_name":"VanHakobyan/Fibonacci-Series","owner":"VanHakobyan","description":":one::one::two::three::five::eight:  :round_pushpin:Fibonacci Series, .net framework 4.6 , C# 6.0","archived":false,"fork":false,"pushed_at":"2017-01-26T17:55:44.000Z","size":10,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-09T06:13:48.395Z","etag":null,"topics":["fibonacci","fibonacci-series","series"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VanHakobyan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-26T16:46:25.000Z","updated_at":"2017-04-25T18:12:31.000Z","dependencies_parsed_at":"2023-04-03T13:06:57.407Z","dependency_job_id":null,"html_url":"https://github.com/VanHakobyan/Fibonacci-Series","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanHakobyan%2FFibonacci-Series","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanHakobyan%2FFibonacci-Series/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanHakobyan%2FFibonacci-Series/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanHakobyan%2FFibonacci-Series/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VanHakobyan","download_url":"https://codeload.github.com/VanHakobyan/Fibonacci-Series/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247044637,"owners_count":20874347,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fibonacci","fibonacci-series","series"],"created_at":"2024-12-16T20:39:13.339Z","updated_at":"2025-04-03T17:25:29.134Z","avatar_url":"https://github.com/VanHakobyan.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fibonacci-Series\n### .net framework 4.6 , C# 6.0\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://i.gyazo.com/9a4277daf63e03585780e17c1268529b.png\"\u003e\n\u003c/p\u003e\n\n\n\u003cp\u003eIn \u003ca href=\"https://en.wikipedia.org/wiki/Mathematics\" title=\"Mathematics\"\u003emathematics\u003c/a\u003e, the \u003cb\u003eFibonacci numbers\u003c/b\u003e are the numbers in the following \u003ca href=\"https://en.wikipedia.org/wiki/Integer_sequence\" title=\"Integer sequence\"\u003einteger sequence\u003c/a\u003e, called the \u003cb\u003eFibonacci sequence\u003c/b\u003e, and characterized by the fact that every number after the first two is the sum of the two preceding ones:\u003csup id=\"cite_ref-FOOTNOTEBeckGeoghegan2010_1-0\" class=\"reference\"\u003e\u003ca href=\"#cite_note-FOOTNOTEBeckGeoghegan2010-1\"\u003e\u003c/a\u003e\u003c/sup\u003e\u003csup id=\"cite_ref-FOOTNOTEB.C3.B3na2011180_2-0\" class=\"reference\"\u003e\u003ca href=\"#cite_note-FOOTNOTEB.C3.B3na2011180-2\"\u003e\u003c/a\u003e\u003c/sup\u003e\u003c/p\u003e\n\n\u003cdl\u003e\n\u003cdd\u003e\u003cspan\u003e\u003cspan class=\"mwe-math-mathml-inline mwe-math-mathml-a11y\" style=\"display: none;\"\u003e\u003cmath xmlns=\"http://www.w3.org/1998/Math/MathML\"\u003e\n  \n\u003c/math\u003e\u003c/span\u003e\u003cimg src=\"https://wikimedia.org/api/rest_v1/media/math/render/svg/7951ca1f26aebf2afbb3eb7f30c4725e635a79b3\" class=\"mwe-math-fallback-image-inline\" aria-hidden=\"true\" style=\"vertical-align: -0.671ex; width:45.939ex; height:2.509ex;\" alt=\"1,\\;1,\\;2,\\;3,\\;5,\\;8,\\;13,\\;21,\\;34,\\;55,\\;89,\\;144,\\;\\ldots \\;\"\u003e\u003c/span\u003e\u003c/dd\u003e\n\u003c/dl\u003e\n\n\n```c#\nstatic IEnumerable\u003cint\u003e GetCalculatedFibonacciSequence()\n{\n  var current = 1;\n  var b = 0;\n  var next = 0;\n  yield return next;\n  yield return current;\n  while (true)\n  {\n      next = current + b;\n      yield return next;\n      b = current;\n      current = next;\n  }\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvanhakobyan%2Ffibonacci-series","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvanhakobyan%2Ffibonacci-series","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvanhakobyan%2Ffibonacci-series/lists"}