[go: up one dir, main page]

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!)
Revision History for A100016 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A100016 a(0) = 1; a(n+1) = a(n) * (next prime larger than a(n)).
(history; published version)
#18 by Michael De Vlieger at Tue Mar 19 11:49:07 EDT 2024
STATUS

reviewed

approved

#17 by Michel Marcus at Tue Mar 19 10:48:04 EDT 2024
STATUS

proposed

reviewed

#16 by Chai Wah Wu at Tue Mar 19 10:45:59 EDT 2024
STATUS

editing

proposed

#15 by Chai Wah Wu at Tue Mar 19 10:45:51 EDT 2024
PROG

(Python)

from itertools import islice

from sympy import nextprime

def A100016_gen(): # generator of terms

yield (a:=1)

while (a:=a*nextprime(a)): yield a

A100016_list = list(islice(A100016_gen(), 10)) # Chai Wah Wu, Mar 19 2024

STATUS

approved

editing

#14 by Sean A. Irvine at Tue May 21 02:33:31 EDT 2019
STATUS

reviewed

approved

#13 by Michel Marcus at Tue May 21 02:10:26 EDT 2019
STATUS

proposed

reviewed

#12 by Jon E. Schoenfield at Mon May 20 23:00:24 EDT 2019
STATUS

editing

proposed

#11 by Jon E. Schoenfield at Mon May 20 23:00:20 EDT 2019
COMMENTS

Terms are very close to A007018(n), with equality for the first 5 terms. Indeed, sequence A007018 is defined like the present sequence, with nextprime(a(n)) replaced by a(n)+1. - _. - _M. F. Hasler_, May 20 2019

STATUS

reviewed

editing

#10 by M. F. Hasler at Mon May 20 22:50:06 EDT 2019
STATUS

proposed

reviewed

Discussion
Mon May 20 22:50
M. F. Hasler: (oops, double-clicked...)
#9 by M. F. Hasler at Mon May 20 22:49:40 EDT 2019
STATUS

editing

proposed

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 30 00:57 EDT 2024. Contains 375520 sequences. (Running on oeis4.)