René's URL Explorer Experiment


Title: fix: include number/2 divisor in FriendlyNumbers sumDivisors by shaked-shlomo · Pull Request #1904 · TheAlgorithms/JavaScript · GitHub

Open Graph Title: fix: include number/2 divisor in FriendlyNumbers sumDivisors by shaked-shlomo · Pull Request #1904 · TheAlgorithms/JavaScript

X Title: fix: include number/2 divisor in FriendlyNumbers sumDivisors by shaked-shlomo · Pull Request #1904 · TheAlgorithms/JavaScript

Description: Bug Maths/FriendlyNumbers.js's sumDivisors uses an exclusive upper bound: for (let i = 0; i < number / 2; i++) { This excludes i === number / 2, which is a divisor of every even number, so the sum of divisors (and therefore the abundancy index σ(n)/n) is wrong for even inputs: sumDivisors(6) returns 9 instead of 12 sumDivisors(28) returns 42 instead of 56 Because the error scales both numbers similarly it sometimes cancels out (the classic FriendlyNumbers(6, 28) still returns true by luck), but it produces wrong classifications in general — e.g. FriendlyNumbers(15, 20) returns true even though σ(15)/15 = 1.6 ≠ σ(20)/20 = 2.1. Fix Loop from 1 to number / 2 inclusive: for (let i = 1; i <= number / 2; i++) { (Starting at 1 also drops the harmless number / 0 = Infinity check the old i = 0 start relied on.) After the fix: sumDivisors(6) = 12, sumDivisors(28) = 56, FriendlyNumbers(6, 28) = true, FriendlyNumbers(30, 140) = true, FriendlyNumbers(15, 20) = false. The module had no test file, so I added Maths/test/FriendlyNumbers.test.js covering friendly pairs, a non-friendly pair, and invalid input.

Open Graph Description: Bug Maths/FriendlyNumbers.js's sumDivisors uses an exclusive upper bound: for (let i = 0; i < number / 2; i++) { This excludes i === number / 2, which is a divisor of every even number, so t...

X Description: Bug Maths/FriendlyNumbers.js&#39;s sumDivisors uses an exclusive upper bound: for (let i = 0; i &lt; number / 2; i++) { This excludes i === number / 2, which is a divisor of every even numb...

Opengraph URL: https://github.com/TheAlgorithms/JavaScript/pull/1904

X: @github

direct link

Domain: Github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:832f3a3a-7b6b-f130-f23d-e2ce6c70d77b
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idD9DA:1531FD:41ED77:59C6FC:6A62D1C8
html-safe-nonceaafef6acaa6414945a6882817f9dd6c91153b0c9b8a6224d5d4fb2ee169e376d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEOURBOjE1MzFGRDo0MUVENzc6NTlDNkZDOjZBNjJEMUM4IiwidmlzaXRvcl9pZCI6IjUyNDYyMjUwMjEwOTkyMzM3MzYiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac3e97663abc953723a14fbe409c647125acce1f517bb2585e9d57b66e4b911910
hovercard-subject-tagpull_request:3784459366
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/TheAlgorithms/JavaScript/pull/1904/files
twitter:imagehttps://avatars.githubusercontent.com/u/167336994?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/167336994?s=400&v=4
og:image:altBug Maths/FriendlyNumbers.js's sumDivisors uses an exclusive upper bound: for (let i = 0; i < number / 2; i++) { This excludes i === number / 2, which is a divisor of every even number, so t...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonedf33b1b61ee7b9a0af988199bfc3503c9c1acafb1f1d40e1f140ea7c84f890dd
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/TheAlgorithms/JavaScript git https://github.com/TheAlgorithms/JavaScript.git
octolytics-dimension-user_id20487725
octolytics-dimension-user_loginTheAlgorithms
octolytics-dimension-repository_id97086543
octolytics-dimension-repository_nwoTheAlgorithms/JavaScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id97086543
octolytics-dimension-repository_network_root_nwoTheAlgorithms/JavaScript
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released41cd1bdb290013455c0ac430fa755621733f5eb
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files#start-of-content
https://Github.com/
Sign in https://Github.com/login?return_to=https%3A%2F%2Fgithub.com%2FTheAlgorithms%2FJavaScript%2Fpull%2F1904%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://Github.com/login?return_to=https%3A%2F%2Fgithub.com%2FTheAlgorithms%2FJavaScript%2Fpull%2F1904%2Ffiles
Sign up https://Github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=TheAlgorithms%2FJavaScript
Reloadhttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Reloadhttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Reloadhttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Please reload this pagehttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
TheAlgorithms https://Github.com/TheAlgorithms
JavaScripthttps://Github.com/TheAlgorithms/JavaScript
Please reload this pagehttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Notifications https://Github.com/login?return_to=%2FTheAlgorithms%2FJavaScript
Fork 5.9k https://Github.com/login?return_to=%2FTheAlgorithms%2FJavaScript
Star 34.2k https://Github.com/login?return_to=%2FTheAlgorithms%2FJavaScript
Code https://Github.com/TheAlgorithms/JavaScript
Issues 21 https://Github.com/TheAlgorithms/JavaScript/issues
Pull requests 188 https://Github.com/TheAlgorithms/JavaScript/pulls
Actions https://Github.com/TheAlgorithms/JavaScript/actions
Projects https://Github.com/TheAlgorithms/JavaScript/projects
Wiki https://Github.com/TheAlgorithms/JavaScript/wiki
Security and quality 0 https://Github.com/TheAlgorithms/JavaScript/security
Insights https://Github.com/TheAlgorithms/JavaScript/pulse
Code https://Github.com/TheAlgorithms/JavaScript
Issues https://Github.com/TheAlgorithms/JavaScript/issues
Pull requests https://Github.com/TheAlgorithms/JavaScript/pulls
Actions https://Github.com/TheAlgorithms/JavaScript/actions
Projects https://Github.com/TheAlgorithms/JavaScript/projects
Wiki https://Github.com/TheAlgorithms/JavaScript/wiki
Security and quality https://Github.com/TheAlgorithms/JavaScript/security
Insights https://Github.com/TheAlgorithms/JavaScript/pulse
Sign up for GitHub https://Github.com/signup?return_to=%2FTheAlgorithms%2FJavaScript%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://Github.com/login?return_to=%2FTheAlgorithms%2FJavaScript%2Fissues%2Fnew%2Fchoose
shaked-shlomohttps://Github.com/shaked-shlomo
TheAlgorithms:masterhttps://Github.com/TheAlgorithms/JavaScript/tree/master
shaked-shlomo:fix/friendly-numbers-divisor-sumhttps://Github.com/shaked-shlomo/JavaScript/tree/fix/friendly-numbers-divisor-sum
Conversation 1 https://Github.com/TheAlgorithms/JavaScript/pull/1904
Commits 1 https://Github.com/TheAlgorithms/JavaScript/pull/1904/commits
Checks 3 https://Github.com/TheAlgorithms/JavaScript/pull/1904/checks
Files changed https://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Please reload this pagehttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
fix: include number/2 divisor in FriendlyNumbers sumDivisors https://Github.com/TheAlgorithms/JavaScript/pull/1904/files#top
Show all changes 1 commit https://Github.com/TheAlgorithms/JavaScript/pull/1904/files
3dd22dd fix: include number/2 divisor in FriendlyNumbers sumDivisors Jun 1, 2026 https://Github.com/TheAlgorithms/JavaScript/pull/1904/commits/3dd22dd54c66414517e211207fb640e12d177a4f
Clear filters https://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Please reload this pagehttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
Please reload this pagehttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
FriendlyNumbers.js https://Github.com/TheAlgorithms/JavaScript/pull/1904/files#diff-06b92cffdc733a3640b457d2fad2c71f1ff224d0c07238759b06df50ef1e7a09
FriendlyNumbers.test.js https://Github.com/TheAlgorithms/JavaScript/pull/1904/files#diff-bd0472f690caeafa1808429c9bc3d3a88b14dcbf7870629cf69e7b1697af4bd7
https://Github.com/TheAlgorithms/JavaScript/blob/master/.github/CODEOWNERS#L1
Maths/FriendlyNumbers.jshttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files#diff-06b92cffdc733a3640b457d2fad2c71f1ff224d0c07238759b06df50ef1e7a09
View file https://Github.com/TheAlgorithms/JavaScript/blob/3dd22dd54c66414517e211207fb640e12d177a4f/Maths/FriendlyNumbers.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://Github.com/TheAlgorithms/JavaScript/pull/1904/{{ revealButtonHref }}
https://Github.com/TheAlgorithms/JavaScript/pull/1904/files#diff-06b92cffdc733a3640b457d2fad2c71f1ff224d0c07238759b06df50ef1e7a09
https://Github.com/TheAlgorithms/JavaScript/pull/1904/files#diff-06b92cffdc733a3640b457d2fad2c71f1ff224d0c07238759b06df50ef1e7a09
https://Github.com/TheAlgorithms/JavaScript/blob/master/.github/CODEOWNERS#L1
Maths/test/FriendlyNumbers.test.jshttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files#diff-bd0472f690caeafa1808429c9bc3d3a88b14dcbf7870629cf69e7b1697af4bd7
View file https://Github.com/TheAlgorithms/JavaScript/blob/3dd22dd54c66414517e211207fb640e12d177a4f/Maths/test/FriendlyNumbers.test.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://Github.com/TheAlgorithms/JavaScript/pull/1904/{{ revealButtonHref }}
Please reload this pagehttps://Github.com/TheAlgorithms/JavaScript/pull/1904/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.