A358691 Gilbreath transform of primes p(2k-1); see Comments.
3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1
Keywords
Examples
Corner of successive absolute difference array (including initial row of primes p(2k-1)): 2 5 11 17 23 31 41 47 59 67 3 6 6 6 8 10 6 12 8 6 3 0 0 2 2 4 6 4 2 4 3 0 2 0 2 2 2 2 2 0 3 2 2 2 0 0 0 0 2 4 1 0 0 2 0 0 0 2 2 0 1 0 2 2 0 0 2 0 2 0
Programs
-
Mathematica
z = 130; g[t_] := Abs[Differences[t]] t = Prime[-1 + 2 Range[140]] s[1] = g[t]; s[n_] := g[s[n - 1]]; Table[s[n], {n, 1, z}] ; Table[First[s[n]], {n, 1, z}]
Comments