OFFSET
1,1
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10472 (terms <= 10^45)
Michael S. Branicky, Python program for OEIS A396019
Carole Dubois, Graphs for Kangaroos
Mickaël Launay, Nombres kangourous, l’énigme maths du « Monde » nᵒ 97
EXAMPLE
931250000 is a grand-grand-grand kangaroo number as a multiple of 3125000, 3125000 is itself a grand-grand kangaroo number as a multiple of 12500, 12500 is itself a grand kangaroo number as a multiple of 250 and 250 is a kangaroo number as a multiple of 5.
PROG
(Python)
def joey(n): return int(str(n)[1:-1]) if n > 99 else 0
def kangaroo(n): return n > 99 and (j:=joey(n)) > 0 and n%j == 0
def ok(n): return n > 9999999 and kangaroo(n) and kangaroo(j:=joey(n)) and kangaroo(jj:=joey(j)) and kangaroo(joey(jj))
# Michael S. Branicky, May 14 2026
(Python) # see linked program to produce b-file
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Carole Dubois, May 14 2026
STATUS
approved
