The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
# Copyright 2010, 2011, 2012 Kevin Ryde
# This file is part of Math-PlanePath.
#
# Math-PlanePath is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 3, or (at your option) any later
# version.
#
# Math-PlanePath is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with Math-PlanePath. If not, see <http://www.gnu.org/licenses/>.
use 5.004;
use strict;
use Test;
BEGIN { plan tests => 9 }
use lib 't','xt';
MyTestHelpers::nowarnings();
use MyOEIS;
# uncomment this to run the ### lines
#use Smart::Comments '###';
my $path = Math::PlanePath::CoprimeColumns->new;
sub numeq_array {
my ($a1, $a2) = @_;
if (! ref $a1 || ! ref $a2) {
return 0;
}
my $i = 0;
while ($i < @$a1 && $i < @$a2) {
if ($a1->[$i] ne $a2->[$i]) {
return 0;
}
$i++;
}
return (@$a1 == @$a2);
}
#------------------------------------------------------------------------------
# A121998 - list of <=k with a common factor
{
my $anum = 'A121998';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum);
my @got;
if ($bvalues) {
OUTER: for (my $x = 2; ; $x++) {
for (my $y = 1; $y <= $x; $y++) {
if (! defined ($path->xy_to_n($x,$y))) {
push @got, $y;
last OUTER unless @got < @$bvalues;
}
}
}
if (! numeq_array(\@got, $bvalues)) {
MyTestHelpers::diag ("bvalues: ",join(',',@{$bvalues}[0..20]));
MyTestHelpers::diag ("got: ",join(',',@got[0..20]));
}
}
skip (! $bvalues,
numeq_array(\@got, $bvalues),
1, "$anum");
}
#------------------------------------------------------------------------------
# A038567 - X coordinate
{
my $anum = 'A038567';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum,
max_count => 10000);
my @got;
if ($bvalues) {
my $sb = Math::PlanePath::CoprimeColumns->new (tree_type => 'SB');
my $n = 0;
while (@got < @$bvalues) {
my ($x,$y) = $path->n_to_xy ($n++);
push @got, $x;
}
if (! numeq_array(\@got, $bvalues)) {
MyTestHelpers::diag ("bvalues: ",join(',',@{$bvalues}[0..20]));
MyTestHelpers::diag ("got: ",join(',',@got[0..20]));
}
}
skip (! $bvalues,
numeq_array(\@got, $bvalues),
1, "$anum");
}
#------------------------------------------------------------------------------
# A038566 - Y coordinate
{
my $anum = 'A038566';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum,
max_count => 10000);
my @got;
if ($bvalues) {
my $sb = Math::PlanePath::CoprimeColumns->new (tree_type => 'SB');
my $n = 0;
while (@got < @$bvalues) {
my ($x,$y) = $path->n_to_xy ($n++);
push @got, $y;
}
if (! numeq_array(\@got, $bvalues)) {
MyTestHelpers::diag ("bvalues: ",join(',',@{$bvalues}[0..20]));
MyTestHelpers::diag ("got: ",join(',',@got[0..20]));
}
}
skip (! $bvalues,
numeq_array(\@got, $bvalues),
1, "$anum");
}
#------------------------------------------------------------------------------
# A054521 - by columns 1 if coprimes, 0 if not
{
my $anum = 'A054521';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum);
{
my $good = 1;
my $count = 0;
if ($bvalues) {
my $x = 1;
my $y = 1;
for (my $i = 0; $i < @$bvalues; $i++) {
my $want = $bvalues->[$i];
my $got = (Math::PlanePath::CoprimeColumns::_coprime($x,$y)
? 1 : 0);
if ($got != $want) {
MyTestHelpers::diag ("wrong _coprime($x,$y)=$got want=$want at i=$i of $filename");
$good = 0;
}
$y++;
if ($y > $x) {
$x++;
$y = 1;
}
$count++;
}
}
ok ($good, 1, "$anum count $count");
}
{
my @got;
if ($bvalues) {
OUTER: for (my $x = 1; ; $x++) {
foreach my $y (1 .. $x) {
if (defined ($path->xy_to_n($x,$y))) {
push @got, 1;
} else {
push @got, 0;
}
last OUTER if @got >= @$bvalues;
}
}
if (! numeq_array(\@got, $bvalues)) {
MyTestHelpers::diag ("bvalues: ",join(',',@{$bvalues}[0..20]));
MyTestHelpers::diag ("got: ",join(',',@got[0..20]));
}
}
skip (! $bvalues,
numeq_array(\@got, $bvalues),
1, "$anum");
}
}
#------------------------------------------------------------------------------
# A127368 - Y coordinate of coprimes, 0 for non-coprimes
{
my $anum = 'A127368';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum);
{
my $good = 1;
my $count = 0;
if ($bvalues) {
# last two values of A127368.html wrong way around as of June 2011
$bvalues->[52] = 0;
$bvalues->[53] = 9;
my $x = 1;
my $y = 1;
for (my $i = 0; $i < @$bvalues; $i++) {
my $want = $bvalues->[$i];
my $got = (Math::PlanePath::CoprimeColumns::_coprime($x,$y)
? $y : 0);
if ($got != $want) {
MyTestHelpers::diag ("wrong _coprime($x,$y)=$got want=$want at i=$i of $filename");
$good = 0;
}
$y++;
if ($y > $x) {
$x++;
$y = 1;
}
$count++;
}
}
ok ($good, 1, "$anum count $count");
}
{
my @got;
if ($bvalues) {
OUTER: for (my $x = 1; ; $x++) {
foreach my $y (1 .. $x) {
if (defined ($path->xy_to_n($x,$y))) {
push @got, $y;
} else {
push @got, 0;
}
last OUTER if @got >= @$bvalues;
}
}
if (! numeq_array(\@got, $bvalues)) {
MyTestHelpers::diag ("bvalues: ",join(',',@{$bvalues}[0..20]));
MyTestHelpers::diag ("got: ",join(',',@got[0..20]));
}
}
skip (! $bvalues,
numeq_array(\@got, $bvalues),
1, "$anum");
}
}
#------------------------------------------------------------------------------
# A054427 - permutation coprime columns N -> SB N
{
my $anum = 'A054427';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum);
my @got;
if ($bvalues) {
my $sb = Math::PlanePath::RationalsTree->new (tree_type => 'SB');
my $n = 0;
while (@got < @$bvalues) {
my ($x,$y) = $path->n_to_xy ($n++);
### frac: "$x/$y"
my $sn = $sb->xy_to_n($x,$y);
push @got, delete_second_highest_bit($sn) + 1;
}
### bvalues: join(',',@{$bvalues}[0..40])
### got: ' '.join(',',@got[0..40])
}
skip (! $bvalues,
numeq_array(\@got, $bvalues),
1, "$anum");
}
sub delete_second_highest_bit {
my ($n) = @_;
my $bit = 1;
my $ret = 0;
while ($bit <= $n) {
$ret |= ($n & $bit);
$bit <<= 1;
}
$bit >>= 1;
$ret &= ~$bit;
$bit >>= 1;
$ret |= $bit;
# ### $ret
# ### $bit
return $ret;
}
# ### assert: delete_second_highest_bit(1) == 1
# ### assert: delete_second_highest_bit(2) == 1
### assert: delete_second_highest_bit(4) == 2
### assert: delete_second_highest_bit(5) == 3
#------------------------------------------------------------------------------
# A002088 - totient sum along X axis
{
my $anum = 'A002088';
my ($bvalues, $lo, $filename) = MyOEIS::read_values($anum);
my $good = 1;
my $count = 0;
if ($bvalues) {
for (my $i = 0; $i < @$bvalues; $i++) {
my $x = $i+1;
my $want = $bvalues->[$i];
my $got = $path->xy_to_n($x,1);
if ($got != $want) {
MyTestHelpers::diag ("wrong totient sum xy_to_n($x,1)=$got want=$want at i=$i of $filename");
$good = 0;
}
$count++;
}
}
ok ($good, 1, "$anum count $count");
}
#------------------------------------------------------------------------------
exit 0;