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!)
A138618 Triangle of exponentials of Mangoldt function M(n) read by rows, in which row products give the natural numbers. 2
1, 2, 1, 3, 1, 1, 2, 2, 1, 1, 5, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 2, 1, 1, 1, 1, 1, 11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums are A001414. This table is similar to A139547 and A120885.
Cumulative column products are A003418, A139550, A139552, A139554.
LINKS
Eric Weisstein's World of Mathematics, Mangoldt Function.
FORMULA
T(n,k) = A014963(n/k) if n mod k = 0, otherwise 1. - Mats Granvik, May 23 2013
EXAMPLE
1 = 1
2*1 = 2
3*1*1 = 3
2*2*1*1 = 4
5*1*1*1*1 = 5
1*3*2*1*1*1 = 6
7*1*1*1*1*1*1 = 7
2*2*1*2*1*1*1*1 = 8
3*1*3*1*1*1*1*1*1 = 9
1*5*1*1*2*1*1*1*1*1 = 10
11*1*1*1*1*1*1*1*1*1*1 = 11
1*1*2*3*1*2*1*1*1*1*1*1 = 12
13*1*1*1*1*1*1*1*1*1*1*1*1 = 13
MATHEMATICA
Flatten[Table[Table[If[Mod[n, k] == 0, Exp[MangoldtLambda[n/k]], 1], {k, 1, n}], {n, 1, 14}]] (* Mats Granvik, May 23 2013 *)
PROG
(PARI) M(n) = ispower(n, , &n); if(isprime(n), n, 1); \\ A014963
T(n, k) = if (n % k, 1, M(n/k));
row(n) = vector(n, k, T(n, k)); \\ Michel Marcus, Mar 03 2023
CROSSREFS
Sequence in context: A087157 A351094 A351092 * A140583 A237266 A123507
KEYWORD
nonn,tabl
AUTHOR
Mats Granvik, May 14 2008
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 1 22:18 EDT 2024. Contains 372178 sequences. (Running on oeis4.)