diff options
| -rw-r--r-- | challenge-133/lubos-kolouch/python/ch-2.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/challenge-133/lubos-kolouch/python/ch-2.py b/challenge-133/lubos-kolouch/python/ch-2.py new file mode 100644 index 0000000000..5762c277d2 --- /dev/null +++ b/challenge-133/lubos-kolouch/python/ch-2.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pyoeis import OEISClient + +c = OEISClient() +seq = c.get_by_id('A104170') + +print(seq.unsigned(10)) |
