OFFSET
1,1
COMMENTS
a(n) is the concatenation of the anti-divisors of A191647(n).
LINKS
Klaus Brockhaus, Table of n, a(n) for n = 1..1000
EXAMPLE
PROG
(Magma) Antidivisors:=func< n | [ d: d in [2..n-1] | n mod d ne 0 and ( (IsEven(d) and 2*n mod d eq 0) or (IsOdd(d) and ((2*n-1) mod d eq 0 or (2*n+1) mod d eq 0)) ) ] >; CAD:=function(n); A:=Antidivisors(n); S:=[]; for k in [1..#A] do S:= Intseq(A[k]) cat S; end for; p:=Seqint(S); return p; end function; A191859List:=func< m | [ p: n in [1..m] | IsPrime(p) where p is CAD(n) ] >; A191859List(600);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Klaus Brockhaus, Jun 18 2011
STATUS
approved