The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A130207 Diagonalized matrix of A000010. 8
1, 0, 1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
FORMULA
T(n,n) = A000010(n).
T(n,k) = 0, if k <> n.
EXAMPLE
First few rows of the triangle are:
1;
0, 1;
0, 0, 2;
0, 0, 0, 2;
0, 0, 0, 0, 4;
...
MAPLE
A130207 := proc(n, k)
if k = n then
numtheory[phi](n);
else
0;
end if;
end proc:
seq(seq(A130207(n, k), k=1..n), n=1..15) ;
PROG
(PARI) for(n=1, 9, for(k=2, n, print1("0, ")); print1(eulerphi(n)", ")) \\ Charles R Greathouse IV, Feb 19 2013
CROSSREFS
Sequence in context: A070202 A280129 A227344 * A325433 A167688 A083914
KEYWORD
nonn,tabl,easy
AUTHOR
Gary W. Adamson, May 16 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 12 20:41 EDT 2024. Contains 372494 sequences. (Running on oeis4.)