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!)
A274354 Number of factors L(i) > 1 of A274281(n), where L = A000032 (Lucas numbers, 2,1,3,4,..., with 1 excluded) 1
1, 1, 1, 2, 1, 2, 1, 2, 2, 1, 2, 2, 3, 2, 1, 2, 2, 3, 2, 1, 2, 3, 2, 3, 2, 1, 2, 3, 2, 3, 2, 3, 2, 1, 2, 3, 2, 3, 2, 3, 4, 3, 2, 2, 1, 2, 3, 2, 3, 3, 2, 3, 4, 3, 2, 3, 2, 1, 2, 3, 2, 3, 3, 3, 2, 3, 4, 3, 4, 2, 3, 2, 1, 2, 2, 3, 3, 2, 3, 3, 4, 3, 2, 3, 4, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
The products of distinct Lucas numbers (including 2, excluding 1), arranged in increasing order, comprise A274281 (with 1 removed). The list begins with 2, 3, 4, 6 = 2*3, 7, 8 = 2*4, 11, 12, 14, 18, 21, 22, 24 = 2*3*4, so that a(4) = 2, a(6) = 2, a(13) = 3.
MATHEMATICA
r[1] := 2; r[2] := 1; r[n_] := r[n] = r[n - 1] + r[n - 2];
s = {1}; z = 40; f = Join[{2}, Map[r, 2 + Range[z]]]; Take[f, 10]
Do[s = Union[s, Select[s*f[[i]], # <= f[[z]] &]], {i, z}];
infQ[n_] := MemberQ[f, n];
ans = 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}];
Take[ans, 10]
w = Map[Length, ans]
Map[Apply[Times, #] &, Select[ans, Length[#] == 2 &]] (* A274349 *)
Map[Apply[Times, #] &, Select[ans, Length[#] == 3 &]] (* A274350 *)
(* Peter J. C. Moses, Jun 17 2016 *)
CROSSREFS
Sequence in context: A177740 A118458 A118459 * A083870 A368779 A052299
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 29 23:48 EDT 2024. Contains 373856 sequences. (Running on oeis4.)