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!)
A282444 Numbers k such that A282442(k) = k + 1. 2
1, 2, 5, 8, 14, 50, 119, 200, 269, 299, 1154, 5369, 47249, 48299, 58643, 130325, 148979, 282074, 887480 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(18) > 10^6. - Hakan Icoz, Apr 09 2021
LINKS
Mathematics Stack Exchange user Sheljohn, A curious sequence.
PROG
(Python)
def A282442():
n = 0
while True:
n += 1
h = n
k = 2
while h >= k:
h = h % k
h = n - h
k += 1
yield k
n=0
for i in A282442():
n += 1
if i == n+1:
print(n) # Hakan Icoz, Apr 09 2021
CROSSREFS
Cf. A282442.
Sequence in context: A139218 A263235 A017988 * A103077 A090980 A329603
KEYWORD
nonn,more
AUTHOR
Peter Kagey, Feb 15 2017
EXTENSIONS
a(13)-a(19) from Hakan Icoz, Apr 09 2021
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 May 17 03:33 EDT 2024. Contains 372577 sequences. (Running on oeis4.)