A033988 Write 0,1,2,... in a clockwise spiral on a square lattice, writing each digit at a separate lattice point, starting with 0 at the origin and 1 at x=0, y=-1; sequence gives the numbers on the positive y-axis.
0, 5, 1, 4, 3, 7, 8, 0, 4, 7, 7, 1, 2, 6, 2, 1, 8, 7, 4, 2, 6, 1, 8, 9, 2, 7, 6, 0, 6, 5, 1, 2, 0, 4, 1, 5, 8, 5, 1, 8, 8, 8, 2, 1, 2, 3, 2, 4, 9, 0, 2, 8, 9, 9, 3, 3, 2, 0, 3, 7, 9, 3, 4, 2, 8, 8, 4, 7, 1, 5, 5, 3, 7, 4, 5, 9, 7, 5, 6, 5, 9, 8, 7, 1, 5, 3, 7, 8, 4, 0, 8, 5, 6, 9, 9, 3, 1, 0, 9, 8, 1, 1, 6, 9, 9
Offset: 0
Examples
1---3---1---4---1 | | 2 4---5---6 5 | | | | 1 3 0 7 1 | | | | | 1 2---1 8 6 | | | 1---0---1---9 1 . We begin with the 0 and wrap the numbers 1 2 3 4 ... around it. Then the sequence is obtained by reading vertically upwards, starting from the initial 0.
Links
- Andrew Woods, Table of n, a(n) for n = 0..1000
Crossrefs
Programs
-
Mathematica
nmax = 105; A033307 = Flatten[IntegerDigits /@ Range[0, nmax^2 + 10 nmax]]; a[n_] := If[n==0, 0, A033307[[4n^2 + n + 1]]]; Table[a[n], {n, 0, nmax}] (* Jean-François Alcover, Apr 24 2017, after Andrew Woods *)
Formula
a(n) = A033307(4*n^2 + n - 1) for n > 0. - Andrew Woods, May 18 2012
Extensions
More terms from Andrew Gacek (andrew(AT)dgi.net)
Edited by Jon E. Schoenfield, Aug 12 2018
Comments