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.

Showing 1-2 of 2 results.

A224531 Triangle in which row n > 1 has the n values x such that phi(x) = A007374(n), We define the first row to be 0.

Original entry on oeis.org

0, 1, 2, 3, 4, 6, 5, 8, 10, 12, 15, 16, 20, 24, 30, 13, 21, 26, 28, 36, 42, 51, 64, 68, 80, 96, 102, 120, 37, 57, 63, 74, 76, 108, 114, 126, 41, 55, 75, 82, 88, 100, 110, 132, 150, 35, 39, 45, 52, 56, 70, 72, 78, 84, 90, 65, 104, 105, 112, 130, 140, 144, 156, 168, 180, 210
Offset: 1

Views

Author

T. D. Noe, Apr 11 2013

Keywords

Examples

			Triangle:
0,
1, 2,
3, 4, 6,
5, 8, 10, 12,
15, 16, 20, 24, 30,
13, 21, 26, 28, 36, 42,
51, 64, 68, 80, 96, 102, 120,
37, 57, 63, 74, 76, 108, 114, 126,
41, 55, 75, 82, 88, 100, 110, 132, 150
		

Crossrefs

Cf. A066420, A224532 (numbers in the first column and diagonal).

Programs

  • Mathematica
    Needs["CNT`"]; nn = 10; t = Table[{}, {nn}]; n = 0; t[[1]] = {0}; left = nn - 1; While[left > 0, n++; p = PhiInverse[n]; cnt = Length[p]; If[cnt <= nn && t[[cnt]] == {}, t[[cnt]] = p; left--]]; t

A066420 Least m such that card(invphi(phi(m)))=n.

Original entry on oeis.org

1, 3, 5, 15, 13, 51, 37, 41, 35, 65, 187, 397, 2269, 1059, 313, 73, 337, 247, 937, 185, 689, 1139, 2057, 403, 2827, 485, 323, 1321, 3697, 241, 769, 9001, 433, 7129, 4201, 527, 577, 1297, 1201, 15937, 3313, 3281, 3379, 949, 3121, 7519, 3889, 779, 1763
Offset: 2

Views

Author

Vladeta Jovovic, Dec 25 2001

Keywords

Crossrefs

Formula

a(n) = A049283(A007374(n)). - Max Alekseyev, Apr 12 2005

Extensions

More terms from Max Alekseyev, Apr 12 2005
Showing 1-2 of 2 results.