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!)
A079474 Triangular array: for s=0 to r-1, a(r,s) = p(s)^(r-s), where p(s) is the s-th primorial number. (p(0)=1, p(1)=2, p(2)=2*3, p(3)=2*3*5,...). 5
1, 1, 2, 1, 4, 6, 1, 8, 36, 30, 1, 16, 216, 900, 210, 1, 32, 1296, 27000, 44100, 2310, 1, 64, 7776, 810000, 9261000, 5336100, 30030, 1, 128, 46656, 24300000, 1944810000, 12326391000, 901800900, 510510, 1, 256, 279936, 729000000, 408410100000 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
In the expansion of [1+x+x^2+...+x^(r-s)]^s, the x^n coefficient states how many factors of a(r,s) have n prime factors.
As a square array A(n,k) n>=0 k>=1 read by descending antidiagonals, A(n,k) when n>=1 is the least common period over the positive integers of the occurrence of the first n prime numbers as the k-th least operand in the respective integers' prime factorizations (written without exponents). - Peter Munn, Jan 25 2017
LINKS
EXAMPLE
Triangle starts
1;
1, 2;
1, 4, 6;
1, 8, 36, 30;
1, 16, 216, 900, 210;
1, 32, 1296, 27000, 44100, 2310;
...
MAPLE
p:= proc(n) option remember; `if`(n=0, 1, ithprime(n)*p(n-1)) end:
a:= (r, s)-> p(s)^(r-s):
seq(seq(a(r, s), s=0..r-1), r=0..10); # Alois P. Heinz, Aug 22 2019
MATHEMATICA
p[0] = 1; p[s_] := p[s] = Prime[s] p[s-1];
a[r_, s_] := p[s]^(r-s);
Table[a[r, s], {r, 0, 10}, {s, 0, r-1}] // Flatten (* Jean-François Alcover, Dec 07 2019 *)
CROSSREFS
a(2n,n) gives A181555.
Sequence in context: A261642 A185947 A268472 * A091543 A330858 A059575
KEYWORD
nonn,tabl
AUTHOR
Alford Arnold, Jan 15 2003
EXTENSIONS
Edited by Don Reble, Nov 02 2005
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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)