login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A104658 Number of distinct prime factors of 23 concatenated n times. 1
1, 2, 5, 4, 4, 7, 4, 6, 8, 7, 6, 10, 6, 8, 13, 11, 6, 11, 3, 11, 14, 10, 6, 13, 10, 9, 12, 12, 8, 20, 5, 15, 14, 10, 12, 17, 7, 6, 15, 15 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A001221((23*100^n-23)/99). - R. J. Mathar, Aug 24 2011
EXAMPLE
Number of distinct prime factors of 23 is 1 (prime).
Number of distinct prime factors of 2323 is 2.
Number of distinct prime factors of 232323 is 5.
MAPLE
A104658 := proc(n) local x ; x := 23 ; for j from 2 to n do x := 100*x+23 ; end do; numtheory[factorset](%) ; nops(%) ; end proc: # R. J. Mathar, Aug 24 2011
MATHEMATICA
Table[PrimeNu[FromDigits[PadRight[{}, 2n, {2, 3}]]], {n, 40}] (* or *) PrimeNu[NestList[100#+23&, 23, 40]] (* Harvey P. Dale, May 21 2012 *)
CROSSREFS
Sequence in context: A211247 A021397 A325941 * A335566 A231730 A095758
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Apr 21 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)