aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorE7-87-83 <fungcheokyin@gmail.com>2022-03-10 09:49:15 +0800
committerE7-87-83 <fungcheokyin@gmail.com>2022-03-10 09:49:15 +0800
commit14e1dfc26558a275721d6cd79743944d81e8637f (patch)
tree3815bd3cf9dd7eb7e42335d4e29df28e1a4fd158
parentf95847ffdaa71e85f0429a5367513db602929010 (diff)
downloadperlweeklychallenge-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.pl2
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