login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A257746 Prime numbers that have a heptagonal (7 sides) Voronoi cell in the Voronoi diagram of the Ulam prime spiral. 0
61, 157, 199, 311, 349, 409, 463, 509, 557, 601, 641, 691, 727, 757, 823, 911, 919, 1051, 1093, 1123, 1153, 1213, 1327, 1433, 1459, 1627, 1951, 2027, 2063, 2221, 2251, 2293, 2311, 2357, 2389, 2551, 2621, 2683, 2719, 2789, 2791, 2939, 2953 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(MATLAB)
clc
clear all
sz = 201; % Size of the N x N square matrix
mat = spiral(sz); % MATLAB Function
k = 1;
for i =1:sz
for j=1:sz
if isprime(mat(i, j)) % Check if the number is prime
% saving indices of primes
y(k) = i; x(k) = j;
k = k+1;
end
end
end
xy = [x', y'];
[v, c] = voronoin(xy); % Returns Voronoi vertices V and
% the Voronoi cells C
k = 1;
for i = 1:length(c)
szv = size(v(c{i}, 1));
polyN(i) = szv(1);
if polyN(i) == 7
A(k) = mat(y(i), x(i));
k = k+1;
end
end
% Print terms
A = sort(A);
fprintf('A = ');
fprintf('%i, ', A);
% When running the code be aware that the last terms you get might not be correct.
% They correspond to the points on the outer edges of the spiral which might be
% altered when considering a larger spiral.
% Use larger spiral to get more terms
CROSSREFS
Sequence in context: A211333 A252811 A252804 * A062661 A044393 A044774
KEYWORD
nonn
AUTHOR
Vardan Semerjyan, May 07 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)