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!)
A355457 Numbers k > 1 such that A354833(k) = k * A354833(k-1). 1
2, 3, 4, 7, 15, 26, 31, 43, 98, 117, 140, 215, 540, 1945, 22279, 38459, 39461, 66869, 69328, 4047994, 4615259, 5617480, 5898979, 9685120, 9751023 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence gives indexes of multiplicative steps in A354833.
LINKS
EXAMPLE
For k = 7:
- A354833(7) = 91 = 7 * 13 = 7 * A354833(6),
- so 7 is a term.
PROG
(PARI) { seen = Map(); v = 1; for (n=2, oo, mapput(seen, v, 0); v=if (mapisdefined(seen, w=v-n) || w<0, print1 (n", "); v*n, w)) }
(Python)
from itertools import count, islice
def agen():
an, seen = 1, {1}
for n in count(2):
t = an - n
if t not in seen and t >= 0: an = t
else: an *= n; yield n
seen.add(an)
print(list(islice(agen(), 25))) # Michael S. Branicky, Jul 02 2022
CROSSREFS
Cf. A354833.
Sequence in context: A088533 A091155 A359193 * A254432 A027362 A068194
KEYWORD
nonn,more
AUTHOR
Rémy Sigrist, Jul 02 2022
EXTENSIONS
a(20)-a(25) from Michael S. Branicky, Jul 02 2022
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 24 07:50 EDT 2024. Contains 371922 sequences. (Running on oeis4.)