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!)
A030641 a(1) = 6; for n > 1, a(n) = product of next 2 primes after a(n-1). 2
6, 77, 6557, 43112347, 1858675670994257, 3454675249946148511864052376019, 11934781082590483693525046199489720199194471433440678070422853 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
The 2 primes after 77 are 79, 83, so next term is 79*83 = 6557.
MAPLE
A030641 := proc(n)
option remember ;
if n = 1 then
6;
else
A030661(procname(n-1)) ;
end if;
end proc:
seq(A030641(n), n=1..6) ; # R. J. Mathar, Aug 09 2019
CROSSREFS
Sequence in context: A355764 A301834 A366540 * A116280 A134788 A167498
KEYWORD
nonn
AUTHOR
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 August 31 00:13 EDT 2024. Contains 375550 sequences. (Running on oeis4.)