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!)
A049110 Number of divisors of A006601(n). 1
6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 12, 8, 8, 8, 8, 8, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A000005(A006601(n)).
MATHEMATICA
With[{s = DivisorSigma[0, Range[10^5]]}, s[[SequencePosition[s, {x_, x_, x_, x_}][[All, 1]] ]] ] (* Michael De Vlieger, Nov 07 2018, after Harvey P. Dale at A006601 *)
PROG
(PARI)
up_to = 10000;
A049110list(up_to) = { my(v=vector(up_to), t, n=1, i=0); while(i<up_to, t = numdiv(n); if(numdiv(n+1)==t && numdiv(n+2)==t && numdiv(n+3)==t, i++; v[i] = t); n++); (v); }
v049110 = A049110list(up_to);
A049110(n) = v049110[n]; \\ Antti Karttunen, Nov 07 2018
(PARI) upto(n) = my(res = List(), current = 1, c, streak = 1); for(i = 2, n + 3, c = numdiv(i); if(c == current, streak++; if(streak == 4, listput(res, c)), streak = 1; current = c)); res \\ David A. Corneth, Nov 07 2018
CROSSREFS
Sequence in context: A157683 A300897 A346289 * A136050 A281112 A229020
KEYWORD
nonn
AUTHOR
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 May 11 12:00 EDT 2024. Contains 372409 sequences. (Running on oeis4.)