OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The number of distinct prime divisors of 135 is 2 - the first term in the sequence.
The number of distinct prime divisors of 357 is 3 - the second term in the sequence.
The number of distinct prime divisors of 579 is 2 - the third term in the sequence.
MAPLE
read("transforms") :
A104377 := proc(n) digcat2(digcat2(2*n+1, 2*n+3), 2*n+5) ; nops(numtheory[factorset](%)) ; end proc: # R. J. Mathar, Feb 03 2011
MATHEMATICA
a[n_] := PrimeNu@ FromDigits@(Join @@ IntegerDigits /@ (2*n + {-1, 1, 3})); Array[a, 100] (* Amiram Eldar, Jan 27 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Apr 16 2005
EXTENSIONS
Offset corrected and more terms added by Amiram Eldar, Jan 27 2020
STATUS
approved