OFFSET
1,1
COMMENTS
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, B41.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Rows n = 1..22 of triangle, flattened
T. D. Noe, Primes in classes of the iterated totient function, JIS 11 (2008) 08.1.2.
Harold Shapiro, An arithmetic function arising from the phi function, Amer. Math. Monthly, Vol. 50, No. 1 (1943), 18-30.
EXAMPLE
Triangle begins:
3;
5, 7;
11, 13, 15;
17, 23, 25, 29, 31;
41, 47, 51, 53, 55, 59, 61;
83, 85, 89, 97, 101, 103, 107, 113, 115, 119, 121, 123, 125;
...
MATHEMATICA
nMax=10; nn=2^nMax; c=Table[0, {nn}]; Do[c[[n]]=1+c[[EulerPhi[n]]], {n, 2, nn}]; t={}; Do[t=Join[t, Select[Flatten[Position[c, n]], #<2^n&]], {n, nMax}]; t (* T. D. Noe, Dec 05 2007 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
EXTENSIONS
More terms from Jud McCranie, Feb 15 1997
Corrected and extended by T. D. Noe, Dec 05 2007
STATUS
approved