Post History
Vyxal, 7 bytes ɾĖ∑?≥)ṅ Try it Online! Vyxal has arbitrary-precision rationals, so this will never run into precision errors. ṅ # Find the first integer -----) # where ∑ # sum of...
#1: Initial revision
# [Vyxal](https://github.com/Vyxal/Vyxal/tree/version-2), 7 bytes
```
ɾĖ∑?≥)ṅ
```
[Try it Online!](https://vyxal.pythonanywhere.com/?v=2&c=1#WyIiLCIiLCLJvsSW4oiRP+KJpSnhuYUiLCIiLCIzIl0=) Vyxal has arbitrary-precision rationals, so this will never run into precision errors.
```
ṅ # Find the first integer
-----) # where
∑ # sum of
Ė # reciprocals of
ɾ # range from 1 to n inclusive
≥ # is at least
? # the input
```
