fix(OEIS/109074): define b as A005156 (per definition) and fix index shift - #5231
Open
tadamcz wants to merge 3 commits into
Open
fix(OEIS/109074): define b as A005156 (per definition) and fix index shift#5231tadamcz wants to merge 3 commits into
tadamcz wants to merge 3 commits into
Conversation
tadamcz
marked this pull request as ready for review
August 31, 2026 20:35
sylvesterkaczmarek
left a comment
There was a problem hiding this comment.
Checked the corrected sequence and indexing. The product gives 1, 1, 3, 26, 646 for b(0..4), and the shifted identity now lines up: frac(1)=1, frac(2)=3, frac(3)=26/3, etc., matching b(n+1)/b(n). This fixes both issues from #5225 without changing the intended conjecture. Looks good.
Paul-Lez
reviewed
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Define
bas A005156 via the Razumov–Stroganov product formula (was incorrectly A001764) and fix the off-by-one in the ratio identity; addsb_0–b_4test lemmas.Fixes #5225