cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A362913 Array of numbers read by upward antidiagonals: leading row lists phi(i), i >= 1 (cf. A000010); the following rows give absolute values of differences of previous row.

Original entry on oeis.org

1, 0, 1, 1, 1, 2, 0, 1, 0, 2, 1, 1, 2, 2, 4, 0, 1, 2, 0, 2, 2, 1, 1, 0, 2, 2, 4, 6, 0, 1, 2, 2, 0, 2, 2, 4, 1, 1, 2, 0, 2, 2, 0, 2, 6, 0, 1, 2, 0, 0, 2, 0, 0, 2, 4, 1, 1, 0, 2, 2, 2, 4, 4, 4, 6, 10, 0, 1, 2, 2, 0, 2, 4, 0, 4, 0, 6, 4, 1, 1, 0, 2, 0, 0, 2, 2, 2, 2, 2, 8, 12, 0, 1, 2, 2
Offset: 1

Views

Author

N. J. A. Sloane, May 09 2023

Keywords

Comments

The leading entries in the rows (the Gilbreath transform of A000010, cf. A362451) appear to form the period-2 sequence 1,0,1,0,1,0,... Is there a simple proof? This would follow if there was a proof that the Gilbreath transform of |A057000| is the all-1's sequence.

Examples

			The array begins:
  1, 1, 2, 2, 4, 2, 6, 4, 6, 4, 10, 4, 12, 6, 8, 8, ...
  0, 1, 0, 2, 2, 4, 2, 2, 2, 6, 6, 8, 6, 2, 0, ...
  1, 1, 2, 0, 2, 2, 0, 0, 4, 0, 2, 2, 4, 2, ...
  0, 1, 2, 2, 0, 2, 0, 4, 4, 2, 0, 2, 2, ...
  1, 1, 0, 2, 2, 2, 4, 0, 2, 2, 2, 0, ...
  0, 1, 2, 0, 0, 2, 4, 2, 0, 0, 2, ...
  1, 1, 2, 0, 2, 2, 2, 2, 0, 2, ...
  0, 1, 2, 2, 0, 0, 0, 2, 2, ...
  1, 1, 0, 2, 0, 0, 2, 0, ...
  ...
The first few antidiagonals are:
  1
  0, 1
  1, 1, 2
  0, 1, 0, 2
  1, 1, 2, 2, 4
  0, 1, 2, 0, 2, 2
  1, 1, 0, 2, 2, 4, 6
  0, 1, 2, 2, 0, 2, 2, 4
  1, 1, 2, 0, 2, 2, 0, 2, 6
  0, 1, 2, 0, 0, 2, 0, 0, 2, 4
  ...
		

Crossrefs

Cf. A000010 (top row of array), A057000 (signed version of second row), A362451,

Programs

  • Mathematica
    A362913[dmax_]:=With[{d=Reverse[NestList[Abs[Differences[#]]&,EulerPhi[Range[dmax]],dmax-1]]},Array[Diagonal[d,#]&,dmax,1-dmax]];A362913[20] (* Generates 20 antidiagonals *) (* Paolo Xausa, May 10 2023 *)