1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
#!/usr/bin/perl -w
# Copyright 2012, 2013, 2014, 2015, 2016, 2018, 2019, 2020 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;
plan tests => 5;
use lib 't','xt';
use MyTestHelpers;
BEGIN { MyTestHelpers::nowarnings(); }
use MyOEIS;
use Math::PlanePath::Flowsnake;
my $path = Math::PlanePath::Flowsnake->new;
#------------------------------------------------------------------------------
# A334485 -- X coordinate
# A334486 -- X coordinate
#
# Y 60 deg
# ^
# /
# ----> X
MyOEIS::compare_values
(anum => 'A334485',
func => sub {
my ($count) = @_;
my @got;
for (my $n = 0; @got < $count; $n++) {
my ($x,$y) = $path->n_to_xy($n);
push @got, ($x-$y)/2;
}
return \@got;
});
# ~/OEIS/b334486.txt
# A334486 -- Y coordinate
MyOEIS::compare_values
(anum => 'A334486',
func => sub {
my ($count) = @_;
my @got;
for (my $n = 0; @got < $count; $n++) {
my ($x,$y) = $path->n_to_xy($n);
push @got, $y;
}
return \@got;
});
#------------------------------------------------------------------------------
# centres of successive hexagons which approach the centre
#
# centre is 3/8
# centre of first hexagon in set of 7 is 3/56
# then next is a reverse so 2/7-3/56 == 13/56
# then in centre of set of 7 and is a reverse so go through 4 to reach centre
# etc
# A262147 numerators
# 3, 13, 115, 125, 19, 141, 1011, 1021, 7171, 7181, 1027, 7197, 50403,
# a(n) = 50*a(n-6)-49*a(n-12) for n>12
# A262148 denominators
# 56, 56, 392, 392, 56, 392 then a(n) = 49*a(n-6)
# 56==8*7
# 392==8*7^2
#
#------------------------------------------------------------------------------
# A261180 - direction 0 to 5
#
# *---*---*
# \ \ /
# *---* *---*
# /
# *---*
# 0, 1, 3, 2, 0, 0, 5, 0, 1
{
my %dxdy_to_dir6 = ('2,0' => 0, # 2 1
'1,1' => 1, # \ /
'-1,1' => 2, # 3 ---*--- 0
'-2,0' => 3, # / \
'-1,-1' => 4, # 4 5
'1,-1' => 5);
MyOEIS::compare_values
(anum => 'A261180',
func => sub {
my ($count) = @_;
my @got;
for (my $n = $path->n_start; @got < $count; $n++) {
my ($dx,$dy) = $path->n_to_dxdy($n);
my $dir = $dxdy_to_dir6{"$dx,$dy"};
die if ! defined $dir;
push @got, $dir;
}
return \@got;
});
# same, mod 2
MyOEIS::compare_values
(anum => 'A261185',
func => sub {
my ($count) = @_;
my @got;
for (my $n = $path->n_start; @got < $count; $n++) {
my ($dx,$dy) = $path->n_to_dxdy($n);
my $dir = $dxdy_to_dir6{"$dx,$dy"};
die if ! defined $dir;
push @got, $dir % 2;
}
return \@got;
});
}
#------------------------------------------------------------------------------
# A229214 - direction 1,2,3,-1,-2,-3
#
# *---*---*
# \ \ /
# *---* *---*
# /
# *---*
# 1, 2, -1, 3, 1, 1
{
my %dxdy_to_dirpn3 = ('2,0' => 1, # 3 2
'1,1' => 2, # \ /
'-1,1' => 3, # -1 ---*--- 1
'-2,0' => -1, # / \
'-1,-1' => -2, # -2 -3
'1,-1' => -3);
MyOEIS::compare_values
(anum => 'A229214',
func => sub {
my ($count) = @_;
my @got;
for (my $n = $path->n_start; @got < $count; $n++) {
my ($dx,$dy) = $path->n_to_dxdy($n);
my $dir = $dxdy_to_dirpn3{"$dx,$dy"};
die if ! defined $dir;
push @got, $dir;
}
return \@got;
});
}
#------------------------------------------------------------------------------
exit 0;
|