Skip to content

Commit

Permalink
Fix A235921
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Ferris committed Nov 23, 2023
1 parent f7cd816 commit d43495f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oeis/A235921.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import A053669 from './A053669'
export default function* A235921(): Generator<bigint> {
const g = A236454()
const h = A053669()
for (let n = 0n; /*∞*/; n++) {
for (let n = 1n; /*∞*/; n++) {
if (g.next().value !== h.next().value) {
yield n
}
Expand Down

0 comments on commit d43495f

Please sign in to comment.