OFFSET
1,1
COMMENTS
Prime power-like numbers (A273200) have nonvanishing determinants.
EXAMPLE
50 is in this sequence because the determinant of DTD(50) = 0.
[ 1 2 5 10 25 50]
[ 1 3 5 15 25 0]
[ 2 2 10 10 0 0]
[ 0 8 0 0 0 0]
[ 8 -8 0 0 0 0]
[-16 0 0 0 0 0]
MATHEMATICA
selQ[n_] := Module[{d = Divisors[n], ld}, ld = Length[d]; Det @ Table[ PadRight[ Differences[d, k], ld], {k, 0, ld-1}] == 0];
Select[Range[1000], selQ] (* Jean-François Alcover, Jul 15 2019 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, May 18 2016
STATUS
approved