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!)
A260093 Numbers n for which A259124(n) = A259124(n-1) + 1. 0
20, 49, 2096, 5684, 14847, 440876, 18770091, 40882585915, 5598199195808, 35959924244180 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Is the sequence infinite?
a(11) > 5 * 10^13. - Hiroaki Yamanouchi, Aug 24 2015
LINKS
PROG
(Python)
TOP = 5000*5000
a = [0]*TOP
for y in range(2, 5000):
z = TOP//y + 1
for x in range(y, z):
n = x*y + x + y
if n>=TOP: break
a[n] += x+y
for n in range(1, TOP):
if a[n]==a[n-1]+1 and a[n]>0: print str(n)+', ',
(PARI) a259124(n)=sum(y=2, sqrtint(n+1)-1, my(x=(n-y)/(y+1)); if(denominator(x)==1, x+y));
isok(n)= a259124(n) == a259124(n-1) + 1; \\ Michel Marcus, Aug 05 2015
CROSSREFS
Sequence in context: A115882 A303295 A277553 * A304832 A007589 A182462
KEYWORD
nonn,more
AUTHOR
Alex Ratushnyak, Jul 15 2015
EXTENSIONS
a(8)-a(9) from Hiroaki Yamanouchi, Aug 24 2015
a(10) from Hiroaki Yamanouchi, Aug 25 2015
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)