package
0.0.0-20241125083417-0b09d6ac830b
Repository: https://github.com/yydaily/project-euler-solution.git
Documentation: pkg.go.dev

# README

Coin partitions

Let p($n$) represent the number of different ways in which $n$ coins can be separated into piles. For example, five coins can be separated into piles in exactly seven different ways, so $p(5)=7$.


OOOOO OOOO  O OOO  OO OOO  O  O OO  OO  O OO  O  O  O O  O  O  O  O

Find the least value of $n$ for which p($n$) is divisible by one million.

# Functions

No description provided by the author
No description provided by the author