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!)
A274353 Number of factors L(i) > 1 of A274280(n), where L = A000032 (Lucas numbers, 1,3,4,...) 2
1, 1, 1, 1, 1, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 3, 2, 2, 1, 2, 3, 2, 2, 2, 1, 2, 3, 2, 3, 2, 3, 2, 1, 2, 3, 2, 3, 2, 3, 2, 1, 2, 2, 3, 3, 2, 3, 3, 2, 3, 2, 1, 2, 2, 3, 4, 3, 2, 3, 3, 2, 3, 2, 2, 1, 2, 3, 2, 3, 4, 3, 2, 3, 3, 3, 2, 3, 3, 2, 2, 1, 2, 3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
EXAMPLE
The products of distinct Lucas numbers, arranged in increasing order, comprise A274280. The list begins with 1, 3, 4, 7, 11, 12 = 3*4, so that a(6) = 2.
MATHEMATICA
r[1] := 1; r[2] := 3; r[n_] := r[n] = r[n - 1] + r[n - 2];
s = {1}; z = 40; f = Map[r, Range[z]]; Take[f, 10]
Do[s = Union[s, Select[s*f[[i]], # <= f[[z]] &]], {i, z}];
infQ[n_] := MemberQ[f, n];
a = Table[#[[Flatten[Position[Map[Apply[Times, #] &, #], s[[n]]]][[1]]]] &[
Rest[Subsets[Map[#[[1]] &, Select[Map[{#, infQ[#]} &,
Divisors[s[[n]]]], #[[2]] && #[[1]] > 1 &]]]]], {n, 2, 200}];
ans = Join[{{1}}, a]; Take[ans, 8]
w = Map[Length, ans] (* A274353 *)
Map[Apply[Times, #] &, Select[ans, Length[#] == 2 &]] (* A274347 *)
Map[Apply[Times, #] &, Select[ans, Length[#] == 3 &]] (* A274348 *)
(* Peter J. C. Moses, Jun 17 2016 *)
CROSSREFS
Sequence in context: A143098 A225515 A265404 * A183028 A114284 A238303
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 18 2016
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 June 27 02:41 EDT 2024. Contains 373723 sequences. (Running on oeis4.)