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!)
A362850 Positions of records in A194943. 2
2, 3, 5, 7, 11, 13, 19, 31, 47, 61, 127, 139, 193, 229, 283, 337, 409, 461, 1531, 1847, 2129, 2861, 4177, 6037, 7577, 8207, 8941, 12311, 22133, 32647, 38231, 40247, 40951, 47903, 52153, 63031, 84229, 93241, 97259, 116729, 124183, 132331 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
A362851(n) = A194943(a(n)).
PROG
(Python) # uses imports, functions in A194943
from itertools import count, islice
def agen(r=-1): # generator of terms
yield from (k for k in count(2) if (v:=A194943(k)) > r and (r:=v))
print(list(islice(agen(), 20))) # Michael S. Branicky, May 18 2023
CROSSREFS
Cf. A194943, A362851 (records themselves).
Sequence in context: A020616 A275272 A329954 * A338396 A067910 A171574
KEYWORD
nonn,more
AUTHOR
R. J. Mathar, May 05 2023
EXTENSIONS
a(28)-a(42) from Michael S. Branicky, May 18 2023
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 27 08:35 EDT 2024. Contains 375462 sequences. (Running on oeis4.)