login
A396019
Grand-grand-grand-kangaroo numbers: kangaroo numbers whose inner number is a grand-grand-kangaroo number (A395926).
3
131250000, 231250000, 331250000, 393750000, 431250000, 531250000, 631250000, 693750000, 731250000, 831250000, 911250000, 931250000, 956250000, 993750000, 1031250000, 1312500000, 2031250000, 2312500000, 3031250000, 3093750000, 3312500000, 3937500000, 4031250000
OFFSET
1,1
LINKS
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