mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
added a sample package
This commit is contained in:
8
samples/Mathematica/Problem12.m
Normal file
8
samples/Mathematica/Problem12.m
Normal file
@@ -0,0 +1,8 @@
|
||||
(* ::Package:: *)
|
||||
|
||||
(* Problem12.m *)
|
||||
(* Author: William Woodruff *)
|
||||
(* Problem: What is the value of the first triangle number to have over five hundred divisors? *)
|
||||
|
||||
Do[If[Length[Divisors[Binomial[i + 1, 2]]] > 500,
|
||||
Print[Binomial[i + 1, 2]]; Break[]], {i, 1000000}]
|
||||
Reference in New Issue
Block a user