diff options
| author | E7-87-83 <fungcheokyin@gmail.com> | 2022-03-10 09:49:15 +0800 |
|---|---|---|
| committer | E7-87-83 <fungcheokyin@gmail.com> | 2022-03-10 09:49:15 +0800 |
| commit | 14e1dfc26558a275721d6cd79743944d81e8637f (patch) | |
| tree | 3815bd3cf9dd7eb7e42335d4e29df28e1a4fd158 | |
| parent | f95847ffdaa71e85f0429a5367513db602929010 (diff) | |
| download | perlweeklychallenge-club-14e1dfc26558a275721d6cd79743944d81e8637f.tar.gz perlweeklychallenge-club-14e1dfc26558a275721d6cd79743944d81e8637f.tar.bz2 perlweeklychallenge-club-14e1dfc26558a275721d6cd79743944d81e8637f.zip | |
correct OEIS id for Pell numbers
| -rw-r--r-- | challenge-155/cheok-yin-fung/perl/ch-2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-155/cheok-yin-fung/perl/ch-2.pl b/challenge-155/cheok-yin-fung/perl/ch-2.pl index 668e0325b2..d8f2549716 100644 --- a/challenge-155/cheok-yin-fung/perl/ch-2.pl +++ b/challenge-155/cheok-yin-fung/perl/ch-2.pl @@ -15,7 +15,7 @@ ch-2.pl $N 2 1 1 0 1 # Fibonacci numbers ch-2.pl $N 2 1 1 2 1 # Lucas numbers #OEIS:A000032 -ch-2.pl $N 2 1 2 0 1 # Pell numbers #OEIS:A000032 +ch-2.pl $N 2 1 2 0 1 # Pell numbers #OEIS:A000129 ch-2.pl $N 3 1 1 0 1 1 1 # Padovan numbers #OEIS:A000931 |
