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!)
A119762 Irregular array where row n is the distinct primes which divide the sum of all previous rows. a(1)=2. 1
2, 2, 2, 2, 3, 11, 2, 11, 5, 7, 47, 2, 47, 11, 13, 167, 2, 167, 503, 2, 503, 1511, 2, 1511, 5, 907, 13, 419, 5879, 2, 5879, 31, 569, 13, 23, 61, 2, 3, 191, 2, 41, 113, 2, 73, 29, 647, 7, 2777, 71, 313, 13, 37, 47, 2, 3, 11, 43, 13, 17, 103, 2, 3, 53, 2, 23, 499, 2, 3, 7, 13, 43, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n,k) | sum{j=1..n-1,l=1,2,...} a(j,l). a(n,k) > a(n,k-1). a(n,k)=A000040(s) for some s. - R. J. Mathar, Jun 23 2006
EXAMPLE
Array begins:
2
2
2
2,3
11
2,11
5,7
47
2,47
The sum of these terms is 143.
Since the distinct primes which divide 143 are 11 and 13, row 10 =(11,13).
MAPLE
A119762 := proc(nmax) local a, dvs, j; a := [2] ; while nops(a) < nmax do dvs := op(2, ifactors(sum('a[i]', i=1..nops(a)))) ; for j from 1 to nops(dvs) do a := [op(a), op(1, op(j, dvs))] ; od ; od ; end: a := A119762(200) : for i from 1 to nops(a) do printf("%d, ", a[i]) ; od ; # R. J. Mathar, Jun 23 2006
PROG
(PLT Scheme) ;; factorize is a prime-factorization routine that returns a list of (prime exponent) pairs for each factor.
(define (A119762 n seq)
(cond
[(= n 0) seq]
[else (A119762 (sub1 n) (append seq (map first (factorize (apply + seq)))))]))
(A119762 50 (list 2)) ;; - Joshua Zucker, Jun 21 2006
CROSSREFS
Cf. A027748.
Sequence in context: A248780 A213021 A078228 * A153667 A216322 A335383
KEYWORD
nonn,tabf
AUTHOR
Leroy Quet, Jun 18 2006
EXTENSIONS
More terms from Joshua Zucker and R. J. Mathar, Jun 21 2006
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 June 9 04:57 EDT 2024. Contains 373227 sequences. (Running on oeis4.)